/* =========================================================
   Gyn-Bilovec — landing page (gyn-bilovec.cz)
   ========================================================= */

:root {
  --gb-primary: #dd92a9;
  --gb-primary-hover: #c4728c;
  --gb-deep: #a4586f;
  --gb-gold: #c9a468;
  --gb-bg: #fdfbfc;
  --gb-soft: #fbeff3;
  --gb-line: #f6dfe7;
  --gb-line-2: #f3d7e1;
  --gb-ink: #3a2e35;
  --gb-ink-strong: #2e2229;
  --gb-body: #6f5f68;
  --gb-body-strong: #4c3d46;
  --gb-muted: #9c8a93;
  --gb-dark: #3e2933;
  --gb-darker: #322029;
  --gb-dark-text: #f2dce4;
  --gb-star: #fbbc05;
  --shadow-card: 0 2px 12px rgba(120, 60, 85, .06);
  --shadow-cta: 0 8px 24px rgba(196, 114, 140, .35);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--gb-bg);
  color: var(--gb-ink);
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--gb-deep); text-decoration: none; }
a:hover { color: var(--gb-primary-hover); }

img { max-width: 100%; display: block; }

input, button { font-family: inherit; }

:focus-visible { outline: 3px solid var(--gb-gold); outline-offset: 2px; border-radius: 4px; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

/* ---------- layout helpers ---------- */

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}

.section { padding-top: clamp(56px, 8vw, 96px); padding-bottom: clamp(56px, 8vw, 96px); }

.section-head { text-align: center; max-width: 720px; margin: 0 auto 44px; }

.eyebrow {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gb-deep);
  margin-bottom: 12px;
}

h2 {
  font-size: clamp(26px, 3.4vw, 38px);
  font-weight: 600;
  margin: 0;
  color: var(--gb-ink-strong);
  text-wrap: balance;
}

.bg-soft { background: var(--gb-soft); }

/* ---------- flag chip (PL) ---------- */

.flag-pl {
  display: inline-block;
  width: 19px;
  height: 13px;
  border-radius: 3px;
  overflow: hidden;
  vertical-align: -1px;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, .08);
  background: linear-gradient(to bottom, #fff 50%, #dc143c 50%);
}

/* ---------- buttons ---------- */

.btn {
  display: inline-block;
  border-radius: 999px;
  font-weight: 800;
  white-space: nowrap;
  text-align: center;
}

.btn-primary {
  background: var(--gb-primary);
  color: #fff;
  padding: 16px 30px;
  font-size: 17px;
  box-shadow: var(--shadow-cta);
}
.btn-primary:hover { background: var(--gb-primary-hover); color: #fff; }

.btn-primary--sm { padding: 11px 22px; font-size: 15px; box-shadow: none; font-weight: 700; }
.btn-primary--md { padding: 14px 26px; font-size: 16px; box-shadow: none; }

.btn-outline {
  border: 2px solid var(--gb-deep);
  color: var(--gb-deep);
  padding: 14px 28px;
  font-size: 17px;
  background: #fff;
}
.btn-outline:hover { background: var(--gb-soft); color: var(--gb-deep); }

.btn-white {
  background: #fff;
  color: var(--gb-deep);
  padding: 16px 32px;
  font-size: 17px;
}
.btn-white:hover { background: var(--gb-soft); color: var(--gb-deep); }

.btn-nav {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--gb-deep);
  color: #fff;
  padding: 14px 26px;
  font-size: 16px;
}
.btn-nav:hover { background: var(--gb-primary-hover); color: #fff; }
.btn-nav svg { flex: none; }
.btn-nav--light { background: #fff; color: var(--gb-deep); }
.btn-nav--light:hover { background: var(--gb-soft); color: var(--gb-deep); }

/* ---------- photos ---------- */

img.photo {
  width: 100%;
  object-fit: cover;
  border: 1px solid var(--gb-line-2);
  border-radius: 14px;
}

/* ---------- 1. top bar ---------- */

.topbar {
  background: var(--gb-dark);
  color: var(--gb-dark-text);
  font-size: 13.5px;
  letter-spacing: .02em;
  padding: 9px 24px;
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  text-align: center;
}
.topbar .dot { opacity: .55; }
.topbar .phone { font-weight: 700; color: #fff; }
.topbar .phone a { color: #fff; text-decoration: underline; text-underline-offset: 3px; }
.topbar .lang { display: inline-flex; align-items: center; gap: 7px; color: var(--gb-gold); font-weight: 700; }

/* ---------- nav ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(253, 251, 252, .94);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--gb-line);
}

.site-header .container {
  padding-top: 14px;
  padding-bottom: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand { display: flex; align-items: center; gap: 11px; }

.brand-mark { position: relative; flex: none; width: 42px; height: 42px; }
.brand-mark .petal {
  position: absolute;
  inset: 0;
  background: var(--gb-primary);
  border-radius: 50% 50% 50% 12%;
  transform: rotate(-45deg);
}
.brand-mark .letter {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
}
.brand-mark .dot {
  position: absolute;
  right: -2px;
  top: -2px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gb-gold);
}

.brand-name { display: flex; flex-direction: column; line-height: 1; }
.brand-name .name { font-size: 21px; font-weight: 700; color: var(--gb-ink); letter-spacing: .01em; }
.brand-name .tag {
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gb-deep);
  margin-top: 4px;
}

.site-nav { gap: 26px; align-items: center; font-size: 15px; font-weight: 600; }
.site-nav a { color: #5d4c55; }
.site-nav a:hover { color: var(--gb-deep); }

.desktop-only { display: flex; }
.sticky-bar { display: none; }

/* ---------- 2. hero ---------- */

.hero {
  padding-top: clamp(40px, 7vw, 84px);
  padding-bottom: clamp(36px, 5vw, 64px);
  display: flex;
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  flex-wrap: wrap;
}

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

.hero-copy { flex: 1 1 440px; min-width: 300px; animation: gbFade .6s ease both; }

.hero-copy .eyebrow { margin-bottom: 16px; }

h1 {
  font-size: clamp(32px, 4.6vw, 52px);
  line-height: 1.13;
  font-weight: 600;
  margin: 0 0 18px;
  color: var(--gb-ink-strong);
  text-wrap: balance;
}

.hero-lead {
  font-size: clamp(16px, 1.7vw, 18.5px);
  line-height: 1.6;
  color: var(--gb-body);
  margin: 0 0 22px;
  max-width: 56ch;
}

.hero-checks {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 16px;
  font-weight: 600;
  color: var(--gb-body-strong);
}
.hero-checks li { display: flex; gap: 10px; align-items: baseline; }
.hero-checks .check { color: var(--gb-gold); font-weight: 800; }

.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }

.hero-rating { display: flex; align-items: center; gap: 10px; margin-top: 24px; flex-wrap: wrap; }
.stars { color: var(--gb-star); letter-spacing: 2px; font-size: 15px; }
.hero-rating .note { font-size: 14px; color: var(--gb-body); }
.hero-rating .note strong { color: var(--gb-ink); }

.hero-visual { flex: 1 1 400px; min-width: 290px; position: relative; }
.hero-visual .backdrop { position: absolute; inset: 9% -6% -6% 9%; background: var(--gb-soft); border-radius: 28px; }
.hero-img {
  position: relative;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 4.4;
  object-fit: cover;
  border-radius: 24px;
  border: 1px solid var(--gb-line-2);
}

/* ---------- 3. trust bar ---------- */

.trust {
  padding-top: clamp(36px, 5vw, 56px);
  padding-bottom: clamp(36px, 5vw, 56px);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 22px;
}

.trust-item { display: flex; gap: 14px; align-items: flex-start; }

.trust-icon {
  flex: none;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: var(--gb-primary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.trust-item h3 {
  font-weight: 800;
  font-size: 16.5px;
  margin: 0 0 4px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.trust-item p { font-size: 14.5px; line-height: 1.55; color: var(--gb-body); margin: 0; }

/* ---------- 4. why cards ---------- */

.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }

.card {
  background: #fff;
  border: 1px solid var(--gb-line);
  border-radius: 20px;
  padding: 30px 28px;
  box-shadow: var(--shadow-card);
}

.card .photo { height: 150px; margin-bottom: 20px; }
.card h3 { font-size: 21px; font-weight: 600; margin: 0 0 10px; }
.card p { margin: 0; font-size: 15.5px; line-height: 1.65; color: var(--gb-body); }

/* ---------- team ---------- */

.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 24px; }

.team-card {
  background: var(--gb-soft);
  border: 1px solid var(--gb-line);
  border-radius: 20px;
  padding: 30px 26px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.team-avatar {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: var(--gb-primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 27px;
  font-weight: 700;
  margin-bottom: 14px;
}

.team-badge {
  background: var(--gb-gold);
  color: #fff;
  border-radius: 999px;
  padding: 4px 14px;
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.team-card h3 { font-size: 19px; font-weight: 700; margin: 0 0 6px; color: var(--gb-ink); }

.team-role {
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gb-deep);
  margin-bottom: 14px;
}

.team-card ul {
  list-style: none;
  margin: 0;
  padding: 14px 0 0;
  border-top: 1px solid var(--gb-line-2);
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--gb-body);
}
.team-card ul strong { color: var(--gb-ink); }

/* ---------- 5. steps ---------- */

.steps-wrap { display: flex; gap: clamp(32px, 6vw, 72px); flex-wrap: wrap; }

.steps-intro { flex: 1 1 320px; min-width: 280px; }
.steps-intro .sticky-inner { position: sticky; top: 110px; }
.steps-intro h2 { margin-bottom: 14px; }
.steps-intro .lead { font-size: 16.5px; line-height: 1.6; color: var(--gb-body); margin: 0 0 24px; }
.steps-intro .photo { margin-top: 28px; height: 210px; border-radius: 16px; }

.steps { flex: 1.2 1 440px; list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; }

.step { display: flex; gap: 20px; }
.step-rail { display: flex; flex-direction: column; align-items: center; }
.step-num {
  flex: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gb-primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 17px;
}
.step:last-child .step-num { background: var(--gb-gold); }
.step-rail .line { width: 2px; flex: 1; background: #eed3de; margin: 6px 0; }
.step-body { padding-bottom: 30px; }
.step:last-child .step-body { padding-bottom: 0; }
.step-body h3 { font-size: 19.5px; font-weight: 600; margin: 8px 0; }
.step-body p { margin: 0; font-size: 15.5px; line-height: 1.65; color: var(--gb-body); }

/* ---------- 6. how ---------- */

.how-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  margin-bottom: 36px;
}

.how-card { background: #fff; border: 1px solid var(--gb-line); border-radius: 20px; padding: 28px 26px; }
.how-card .num { font-size: 34px; font-weight: 700; color: var(--gb-line-2); margin-bottom: 10px; }
.how-card h3 { font-size: 17.5px; font-weight: 800; margin: 0 0 8px; }
.how-card p { margin: 0; font-size: 15px; line-height: 1.65; color: var(--gb-body); }
.how-card a { font-weight: 700; }

.center { text-align: center; }

/* ---------- 7. gallery ---------- */

.gallery { padding-bottom: clamp(56px, 8vw, 96px); }
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 14px; }

.gallery-item {
  position: relative;
  padding: 0;
  margin: 0;
  border: 1px solid var(--gb-line-2);
  border-radius: 18px;
  overflow: hidden;
  cursor: pointer;
  background: none;
  aspect-ratio: 4 / 3;
  display: block;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item::after {
  content: "+";
  position: absolute;
  top: 10px;
  right: 10px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(46, 34, 41, .5);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  opacity: 0;
  transition: opacity .25s ease;
  pointer-events: none;
}
.gallery-item:hover::after,
.gallery-item:focus-visible::after { opacity: 1; }

/* ---------- lightbox ---------- */

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: rgba(46, 34, 41, .92);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.lightbox[hidden] { display: none; }
.lightbox-img {
  max-width: 92vw;
  max-height: 88vh;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .5);
  animation: gbFade .3s ease both;
}
.lightbox-close {
  position: absolute;
  top: 18px;
  right: 22px;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, .15);
  color: #fff;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
}
.lightbox-close:hover { background: rgba(255, 255, 255, .28); }
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, .15);
  color: #fff;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
}
.lightbox-nav:hover { background: rgba(255, 255, 255, .28); }
.lightbox-prev { left: 18px; }
.lightbox-next { right: 18px; }
@media (max-width: 640px) {
  .lightbox-nav { width: 40px; height: 40px; font-size: 24px; }
  .lightbox-prev { left: 8px; }
  .lightbox-next { right: 8px; }
}

/* ---------- 8. know ---------- */

.know-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; }

.know-card { background: #fff; border-radius: 18px; padding: 26px 24px; }
.know-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--gb-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.know-card h3 { font-size: 17px; font-weight: 800; margin: 0 0 8px; color: var(--gb-deep); }
.know-card p { margin: 0; font-size: 15px; line-height: 1.65; color: var(--gb-body); }

.know-cta { display: flex; gap: 14px; justify-content: center; align-items: center; flex-wrap: wrap; margin-top: 40px; }

.pay-badges { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 14px; }
.pay-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--gb-soft);
  border: 1px solid var(--gb-line-2);
  border-radius: 999px;
  padding: 8px 16px;
  font-weight: 800;
  font-size: 14px;
  color: var(--gb-deep);
}

/* ---------- 9. reviews ---------- */

.rating-pill {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  border: 1px solid var(--gb-line);
  border-radius: 999px;
  padding: 10px 20px;
  box-shadow: var(--shadow-card);
  margin-top: 18px;
}
.rating-pill .score { font-weight: 800; font-size: 15.5px; color: var(--gb-ink); }
.rating-pill .label { font-size: 13.5px; color: var(--gb-muted); }

.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }

.review {
  margin: 0;
  background: #fff;
  border: 1px solid var(--gb-line);
  border-radius: 20px;
  padding: 30px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.review-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.review-head .stars { font-size: 16px; letter-spacing: 3px; }
.review-badge { display: inline-flex; align-items: center; gap: 7px; font-size: 12.5px; color: var(--gb-muted); }
.review blockquote { margin: 0; font-size: 15.5px; line-height: 1.65; color: var(--gb-body-strong); }
.review figcaption { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.review .avatar {
  flex: none;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--gb-soft);
  color: var(--gb-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 16px;
  border: 1px solid var(--gb-line-2);
}
.review .who { font-weight: 800; font-size: 15px; color: var(--gb-deep); }

/* ---------- 10. faq ---------- */

.faq-wrap { padding-bottom: clamp(56px, 8vw, 96px); display: flex; gap: clamp(32px, 6vw, 72px); flex-wrap: wrap; }

.faq-intro { flex: 1 1 300px; min-width: 270px; }
.faq-intro .sticky-inner { position: sticky; top: 110px; }
.faq-intro h2 { margin-bottom: 14px; }
.faq-intro p { font-size: 16px; line-height: 1.6; color: var(--gb-body); margin: 0; }

.faq-list { flex: 1.4 1 480px; display: flex; flex-direction: column; gap: 12px; }

.faq-list details { background: #fff; border: 1px solid var(--gb-line); border-radius: 16px; padding: 18px 22px; }
.faq-list summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-weight: 800;
  font-size: 16.5px;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-plus {
  flex: none;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--gb-soft);
  color: var(--gb-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
}
.faq-plus::before { content: "+"; }
details[open] .faq-plus::before { content: "–"; }
.faq-list details p { margin: 12px 0 0; font-size: 15px; line-height: 1.65; color: var(--gb-body); }
.faq-list details p strong { color: var(--gb-ink); }
.faq-list details ul { margin: 6px 0 0; padding-left: 20px; font-size: 15px; line-height: 1.65; color: var(--gb-body); }

/* ---------- travel / dojazd ---------- */

.travel-wrap { display: flex; gap: clamp(32px, 6vw, 64px); flex-wrap: wrap; align-items: center; }

.travel-map { flex: 1 1 380px; min-width: 290px; }
.travel-map img { width: 100%; max-width: 560px; height: auto; display: block; margin: 0 auto; }

.travel-info { flex: 1 1 420px; min-width: 290px; }
.travel-info h2 { margin-bottom: 14px; }
.travel-info .lead { font-size: 16px; line-height: 1.6; color: var(--gb-body); margin: 0 0 24px; }

.dist-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 10px 24px;
  margin-bottom: 24px;
}
.dist { display: flex; gap: 10px; align-items: baseline; font-size: 15px; }
.dist .dot { flex: none; width: 8px; height: 8px; border-radius: 50%; background: var(--gb-gold); }
.dist strong { color: var(--gb-ink); white-space: nowrap; }
.dist .km { color: var(--gb-muted); margin-left: auto; white-space: nowrap; }

.travel-note { font-size: 14px; line-height: 1.6; color: var(--gb-muted); margin: 0; }
.travel-cta { margin-top: 22px; }

/* ---------- cta band ---------- */

.cta-band { padding-bottom: clamp(56px, 8vw, 96px); }
.cta-band-inner {
  background: var(--gb-primary);
  border-radius: 26px;
  padding: clamp(36px, 6vw, 64px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
}
.cta-band-inner h2 { font-size: clamp(26px, 3.6vw, 40px); color: #fff; max-width: 22ch; }

/* ---------- 11/12. contact ---------- */

.contact { background: var(--gb-dark); }
.contact-wrap { display: flex; gap: clamp(32px, 6vw, 72px); flex-wrap: wrap; }

.contact-info { flex: 1 1 380px; min-width: 290px; color: var(--gb-dark-text); }
.contact-info h2 { color: #fff; margin-bottom: 22px; }
.contact-rows { display: flex; flex-direction: column; gap: 14px; font-size: 16px; line-height: 1.6; }
.contact-rows .row { display: flex; gap: 12px; }
.contact-rows .ico { color: var(--gb-gold); }
.contact-rows a { color: #fff; font-weight: 800; text-decoration: underline; text-underline-offset: 3px; }
.contact-note { font-size: 14.5px; color: #d9b0c0; margin: 20px 0 26px; font-style: italic; }
.contact-map {
  height: 220px;
  border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(135deg, #4c3140, #3e2933);
  border: 1px solid #533a46;
}
.contact-map iframe { width: 100%; height: 100%; border: 0; display: block; }
.contact-nav { margin-top: 16px; }

.contact-panel { flex: 1 1 380px; min-width: 290px; }
.panel-card {
  background: #fff;
  border-radius: 22px;
  padding: clamp(26px, 4vw, 40px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, .2);
}
.panel-card h2 { font-size: clamp(23px, 2.6vw, 29px); margin-bottom: 10px; }
.panel-card .lead { font-size: 15px; line-height: 1.6; color: var(--gb-body); margin: 0 0 24px; }

.consultants { display: flex; flex-direction: column; gap: 12px; margin-bottom: 22px; }
.consultant {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--gb-soft);
  border: 1px solid var(--gb-line);
  border-radius: 16px;
  padding: 16px 18px;
}
.consultant .avatar {
  flex: none;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 1px solid var(--gb-line-2);
  object-fit: cover;
  display: block;
}
.consultant .info { flex: 1; min-width: 0; }
.consultant .name { font-weight: 800; font-size: 16.5px; color: var(--gb-ink); }
.consultant .role { font-size: 13.5px; color: var(--gb-muted); display: flex; align-items: center; gap: 6px; }
.consultant .avail { flex: none; text-align: right; }
.consultant .avail-label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gb-deep);
}
.consultant .avail-hours { font-size: 14px; font-weight: 700; color: var(--gb-body-strong); }

.panel-card .btn-primary { display: block; padding: 17px; font-size: 17.5px; }
.panel-note { margin: 14px 0 0; text-align: center; font-size: 13px; color: var(--gb-muted); }

/* ---------- 13. footer ---------- */

.site-footer { background: var(--gb-darker); color: #c7a0ad; padding: 36px 24px 90px; }
.site-footer .inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: center;
  text-align: center;
}
.site-footer .brand-mark { width: 40px; height: 40px; }
.site-footer .brand-mark .letter { font-size: 19px; }
.site-footer .brand-name-flat { font-size: 22px; font-weight: 700; color: #fff; }
.site-footer p { margin: 0; font-size: 14.5px; line-height: 1.6; max-width: 60ch; }
.site-footer .phone { color: #fff; font-weight: 800; font-size: 16px; }
.site-footer .mail { color: #c7a0ad; font-weight: 600; font-size: 14.5px; }
.site-footer .mail:hover { color: #fff; }
.site-footer nav { display: flex; gap: 20px; flex-wrap: wrap; justify-content: center; font-size: 13.5px; }
.site-footer nav a { color: #c7a0ad; }
.site-footer nav a:hover { color: #fff; }
.site-footer .copy { font-size: 13px; color: #93707e; }

/* ---------- sticky mobile bar ---------- */

.sticky-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 100;
  background: #fff;
  border-top: 1px solid var(--gb-line);
  padding: 10px 14px;
  gap: 10px;
  box-shadow: 0 -6px 24px rgba(120, 70, 60, .14);
}
.sticky-bar .call {
  flex: 1;
  background: var(--gb-primary);
  color: #fff;
  text-align: center;
  padding: 14px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 16.5px;
}
.sticky-bar .call:hover { background: var(--gb-primary-hover); color: #fff; }
.sticky-bar .book {
  flex: none;
  border: 2px solid var(--gb-deep);
  color: var(--gb-deep);
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 15px;
  display: flex;
  align-items: center;
}

@media (max-width: 900px) {
  .desktop-only { display: none; }
  .sticky-bar { display: flex; }
  body { padding-bottom: 64px; }
}

/* header CTA: short label on narrow screens */
.btn .label-short { display: none; }
.topbar-hours { display: contents; }

@media (max-width: 640px) {
  .site-header .btn .label-full { display: none; }
  .site-header .btn .label-short { display: inline; }
  .site-header .btn-primary--sm { padding: 9px 16px; font-size: 13.5px; }
  .topbar-hours { display: none; }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn { text-align: center; }
  .consultant { flex-wrap: wrap; }
  .consultant .avail { flex: 1 1 100%; text-align: left; display: flex; gap: 10px; align-items: baseline; margin-top: 2px; }
  .cta-band-inner { justify-content: center; text-align: center; }
  .know-cta .btn { flex: 1 1 100%; text-align: center; }
}

/* ---------- legal pages ---------- */

.legal-main { max-width: 820px; margin: 0 auto; padding: clamp(36px, 6vw, 64px) 24px clamp(56px, 8vw, 96px); }
.legal-main h1 { font-size: clamp(28px, 4vw, 40px); margin-bottom: 10px; }
.legal-main .updated { font-size: 14px; color: var(--gb-muted); margin: 0 0 32px; }
.legal-main h2 { font-size: 21px; margin: 32px 0 10px; }
.legal-main p, .legal-main li { font-size: 15.5px; line-height: 1.7; color: var(--gb-body); }
.legal-main ul { padding-left: 22px; }
.legal-main table { border-collapse: collapse; width: 100%; font-size: 14.5px; }
.legal-main th, .legal-main td { border: 1px solid var(--gb-line); padding: 10px 12px; text-align: left; color: var(--gb-body); }
.legal-main th { background: var(--gb-soft); color: var(--gb-ink); }
.legal-table-wrap { overflow-x: auto; }
.back-link { display: inline-block; margin-bottom: 24px; font-weight: 700; }
