/* ============================================================
   SOUKROMÁ ZUBNÍ ORDINACE MATĚJKOVÁ — styles.css
   Desktop styles · All brand variables · No media queries
   ============================================================ */

/* ── CSS VARIABLES ── */
:root {
  --brand-primary:  #1A5EA8;
  --brand-dark:     #0E3D72;
  --brand-mid:      #4A8BC4;
  --brand-light:    #D8EEFA;
  --brand-tint:     #EFF6FD;
  --text-dark:      #1A2336;
  --text-mid:       #4A5568;
  --text-light:     #718096;
  --white:          #FFFFFF;
  --off-white:      #F8FAFB;
  --border:         #D9E8F5;
  --radius-sm:      8px;
  --radius-md:      12px;
  --radius-lg:      16px;
  --radius-xl:      24px;
  --shadow-card:    0 4px 6px rgba(26,94,168,0.10), 0 10px 24px rgba(26,94,168,0.07);
  --shadow-elevated:0 20px 40px rgba(26,94,168,0.15), 0 4px 8px rgba(0,0,0,0.05);
  --shadow-btn:     0 4px 14px rgba(26,94,168,0.35), 0 1px 4px rgba(14,61,114,0.2);
  --transition-base:0.28s ease;
}

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.75;
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { border: none; cursor: pointer; font-family: inherit; }

/* ── CONTAINER ── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ── SECTION SPACING ── */
.section-pad { padding: 96px 0; }
.section-pad-sm { padding: 64px 0; }

/* ── TYPOGRAPHY ── */
.section-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand-primary);
  margin-bottom: 12px;
}
.section-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--text-dark);
  letter-spacing: -0.025em;
  line-height: 1.25;
  margin-bottom: 16px;
}
.section-sub {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.75;
  max-width: 520px;
}
.section-heading--white { color: var(--white); }
.section-label--white { color: rgba(255,255,255,0.7); }
.section-sub--white { color: rgba(255,255,255,0.75); }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: background var(--transition-base),
              box-shadow var(--transition-base),
              transform 0.22s cubic-bezier(0.34,1.56,0.64,1);
  cursor: pointer;
}
.btn:focus-visible { outline: 3px solid var(--brand-primary); outline-offset: 3px; }
.btn-primary {
  background: var(--brand-primary);
  color: var(--white);
  box-shadow: var(--shadow-btn);
}
.btn-primary:hover {
  background: var(--brand-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(26,94,168,0.45), 0 2px 6px rgba(14,61,114,0.25);
}
.btn-primary:active { transform: translateY(0); box-shadow: var(--shadow-btn); }
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.65);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
  transform: translateY(-2px);
}
.btn-outline:active { transform: translateY(0); }
.btn-outline-blue {
  background: transparent;
  color: var(--brand-primary);
  border: 2px solid var(--brand-primary);
}
.btn-outline-blue:hover {
  background: var(--brand-tint);
  transform: translateY(-2px);
}

/* ── SCROLL ANIMATION ── */
.animate-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}
.animate-up.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.06s; }
.delay-2 { transition-delay: 0.12s; }
.delay-3 { transition-delay: 0.18s; }
.delay-4 { transition-delay: 0.24s; }
.delay-5 { transition-delay: 0.30s; }

/* ── NAVBAR ── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--brand-dark);
  transition: background 0.3s ease, backdrop-filter 0.3s ease, box-shadow 0.3s ease;
}
.navbar.scrolled {
  background: rgba(14,61,114,0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 2px 20px rgba(14,61,114,0.25);
}
.navbar-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 72px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}
/* Logo */
.nav-logo {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  line-height: 1.15;
  text-decoration: none;
}
.nav-logo-name {
  font-family: 'Playfair Display', serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.01em;
}
.nav-logo-type {
  font-family: 'Inter', sans-serif;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand-mid);
}
/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  margin: 0 auto;
}
.nav-links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255,255,255,0.82);
  position: relative;
  padding-bottom: 3px;
  transition: color var(--transition-base);
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--brand-mid);
  border-radius: 2px;
  transition: width var(--transition-base);
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }
.nav-links a:focus-visible { outline: 2px solid var(--brand-mid); border-radius: 2px; }
/* Nav phone + CTA */
.nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}
.nav-phone {
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  transition: color var(--transition-base);
}
.nav-phone:hover { color: var(--white); }
.nav-cta {
  padding: 10px 22px;
  font-size: 0.85rem;
}

/* Hamburger (hidden on desktop) */
.nav-hamburger { display: none; }

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 72px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('img/hero1.jpg');
  background-size: cover;
  background-position: center 30%;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg,
    rgba(10,28,60,0.88) 0%,
    rgba(14,61,114,0.72) 45%,
    rgba(26,94,168,0.30) 100%);
}
.hero-noise {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 256px;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 620px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.20);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.04em;
  margin-bottom: 24px;
  backdrop-filter: blur(6px);
}
.hero-badge-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #4ECCA3;
  box-shadow: 0 0 8px #4ECCA3;
  flex-shrink: 0;
}
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.03em;
  line-height: 1.18;
  margin-bottom: 20px;
}
.hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.80);
  line-height: 1.65;
  margin-bottom: 36px;
  max-width: 500px;
}
.hero-hours-mini {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 36px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.70);
}
.hero-hours-mini svg { flex-shrink: 0; }
.hero-ctas {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
/* Hero image panel (right) */
.hero-image-panel {
  position: absolute;
  right: 0;
  top: 72px;
  bottom: 0;
  width: 40%;
  overflow: hidden;
}
.hero-image-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.hero-image-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(10,28,60,0.8) 0%, rgba(10,28,60,0.1) 60%);
  z-index: 1;
}

/* ── TRUST BAR ── */
.trust-bar {
  background: var(--brand-dark);
  padding: 48px 0;
}
.trust-bar-inner {
  display: flex;
  flex-direction: column;
  gap: 36px;
}
.trust-stats {
  display: flex;
  justify-content: center;
  gap: 56px;
}
.trust-stat {
  text-align: center;
}
.trust-stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.03em;
  line-height: 1;
}
.trust-stat-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.06em;
  margin-top: 4px;
}
.trust-divider {
  width: 1px;
  background: rgba(255,255,255,0.12);
  align-self: stretch;
}
/* Insurance band */
.insurance-band {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 32px;
}
.insurance-label {
  font-size: 0.6rem;
  font-weight: 700;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  text-align: center;
  margin-bottom: 20px;
}
.insurance-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 12px;
}
.insurer-badge {
  background: rgba(255,255,255,0.96);
  border-radius: 10px;
  padding: 10px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: transform 0.18s cubic-bezier(0.34,1.56,0.64,1), opacity 0.18s ease;
}
.insurer-badge:hover { transform: translateY(-2px); opacity: 0.92; }
.insurer-badge img {
  height: 26px;
  width: auto;
  object-fit: contain;
}
.insurer-code {
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--text-mid);
  letter-spacing: 0.04em;
  border-left: 1px solid var(--border);
  padding-left: 9px;
  line-height: 1;
}

/* ── SERVICES ── */
.services { background: var(--off-white); }
.services-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 56px;
  gap: 24px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
  transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.3s ease;
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-elevated);
}
.service-icon {
  width: 52px;
  height: 52px;
  background: var(--brand-tint);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--brand-primary);
  transition: background var(--transition-base);
}
.service-card:hover .service-icon { background: var(--brand-light); }
.service-icon svg { width: 26px; height: 26px; }
.service-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
  line-height: 1.3;
}
.service-desc {
  font-size: 0.875rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* ── ABOUT ── */
.about { background: var(--white); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.about-text { }
.about-text .section-sub {
  max-width: none;
  margin-bottom: 24px;
}
.about-text p + p { margin-top: 16px; }
.about-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 36px;
}
.about-value {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.about-value-icon {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  background: var(--brand-tint);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-primary);
  flex-shrink: 0;
}
.about-value-text strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 2px;
}
.about-value-text span {
  font-size: 0.8rem;
  color: var(--text-light);
}
.about-image {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  height: 560px;
  box-shadow: var(--shadow-elevated);
}
.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.about-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(14,61,114,0.25) 0%, transparent 55%);
}
.about-badge {
  position: absolute;
  bottom: 28px;
  left: 28px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  box-shadow: 0 8px 32px rgba(14,61,114,0.18);
  z-index: 2;
}
.about-badge-num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--brand-primary);
  line-height: 1;
}
.about-badge-text {
  font-size: 0.78rem;
  color: var(--text-mid);
  margin-top: 4px;
}

/* ── TEAM ── */
#nas-tym { background: var(--brand-tint); }
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 56px;
}
.team-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
  transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.3s ease;
}
.team-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-elevated);
}
.team-photo-wrap {
  position: relative;
  overflow: hidden;
  height: 320px;
  background: var(--off-white);
}
.team-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.5s ease;
}
.team-card:hover .team-photo-wrap img { transform: scale(1.04); }
.team-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(14,61,114,0.55) 0%, transparent 50%);
}
.team-body {
  padding: 20px 24px 24px;
}
.team-role {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand-primary);
  margin-bottom: 6px;
}
.team-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.12rem;
  color: var(--text-dark);
  margin-bottom: 8px;
  letter-spacing: -0.02em;
  line-height: 1.3;
}
.team-credentials {
  font-size: 0.82rem;
  color: var(--text-light);
  line-height: 1.5;
}
.team-email {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  font-size: 0.8rem;
  color: var(--brand-primary);
  transition: color var(--transition-base);
}
.team-email:hover { color: var(--brand-dark); }
.team-email:focus-visible { outline: 2px solid var(--brand-primary); border-radius: 4px; }

/* Pro card with hours */
.team-card--pro .team-upper { display: flex; }
.team-card--pro .team-photo-wrap {
  width: 42%;
  height: 210px;
  flex-shrink: 0;
}
.team-hours-mini {
  flex: 1;
  background: var(--off-white);
  padding: 18px 14px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.thm-title {
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--brand-primary);
  margin-bottom: 10px;
}
.thm-table { width: auto; border-collapse: collapse; }
.thm-table tr { border-bottom: 1px solid var(--border); }
.thm-table tr:last-child { border-bottom: none; }
.thm-table td { padding: 4px 0; font-size: 0.73rem; color: var(--text-dark); line-height: 1.3; }
.thm-d {
  font-size: 0.63rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-light);
  letter-spacing: 0.04em;
  width: 20px;
  padding-right: 6px;
}

/* Hover cue */
.team-card[data-member] .team-body::after {
  content: 'Zobrazit profil →';
  display: block;
  margin-top: 12px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--brand-primary);
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.team-card[data-member]:hover .team-body::after {
  opacity: 1;
  transform: translateY(0);
}

/* ── TEAM MODAL ── */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(10,22,50,0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.modal-backdrop.open { opacity: 1; pointer-events: all; }
.modal-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  width: 100%;
  max-width: 860px;
  max-height: 90vh;
  overflow-y: auto;
  display: grid;
  grid-template-columns: 300px 1fr;
  box-shadow: 0 32px 80px rgba(0,0,0,0.35), 0 8px 24px rgba(0,0,0,0.15);
  transform: scale(0.94) translateY(16px);
  transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1);
  position: relative;
}
.modal-backdrop.open .modal-card { transform: scale(1) translateY(0); }
.modal-photo-col {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl) 0 0 var(--radius-xl);
  min-height: 420px;
}
.modal-photo-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}
.modal-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,28,80,0.85) 0%, transparent 50%);
}
.modal-photo-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
}
.modal-photo-badge .modal-role {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand-mid);
  margin-bottom: 4px;
}
.modal-photo-badge .modal-name-sm {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  color: var(--white);
  font-weight: 700;
}
.modal-content-col { padding: 40px 36px; overflow-y: auto; }
.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.92);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  transition: background 0.2s ease, transform 0.2s cubic-bezier(0.34,1.56,0.64,1);
}
.modal-close:hover { background: var(--white); transform: scale(1.1); }
.modal-close:focus-visible { outline: 2px solid var(--brand-primary); outline-offset: 2px; }
.modal-close svg { color: var(--text-dark); }
.modal-tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand-primary);
  margin-bottom: 6px;
}
.modal-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.65rem;
  color: var(--text-dark);
  letter-spacing: -0.03em;
  margin-bottom: 4px;
}
.modal-email {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: var(--brand-primary);
  margin-bottom: 24px;
}
.modal-email svg { flex-shrink: 0; }
.modal-section { margin-bottom: 20px; }
.modal-section-title {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  border-bottom: 1px solid var(--border);
  padding-bottom: 8px;
  margin-bottom: 12px;
}
.modal-item {
  display: flex;
  gap: 12px;
  margin-bottom: 10px;
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.5;
}
.modal-item-year {
  font-size: 0.73rem;
  color: var(--brand-primary);
  font-weight: 600;
  white-space: nowrap;
  padding-top: 2px;
  min-width: 86px;
}
.modal-bullet {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 8px;
  font-size: 0.88rem;
  color: var(--text-mid);
}
.modal-bullet::before {
  content: '';
  display: block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--brand-primary);
  margin-top: 7px;
  flex-shrink: 0;
}

/* ── TESTIMONIALS ── */
.testimonials { background: var(--white); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 56px;
}
.testimonial-card {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
  transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.3s ease;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-elevated);
}
.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
}
.testimonial-stars svg {
  width: 18px; height: 18px;
  fill: #F59E0B;
  color: #F59E0B;
}
.testimonial-quote {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 24px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--brand-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--brand-dark);
  flex-shrink: 0;
}
.testimonial-name {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-dark);
}
.testimonial-meta {
  font-size: 0.78rem;
  color: var(--text-light);
}

/* ── FAQ ── */
.faq { background: var(--brand-tint); }
.faq-list {
  max-width: 800px;
  margin: 56px auto 0;
}
.faq-item {
  border-bottom: 1px solid var(--border);
  background: var(--white);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(26,94,168,0.06);
}
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 28px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-dark);
  gap: 16px;
  transition: color var(--transition-base);
  background: none;
  width: 100%;
  text-align: left;
}
.faq-question:hover { color: var(--brand-primary); }
.faq-question:focus-visible { outline: 2px solid var(--brand-primary); }
.faq-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--brand-tint);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-primary);
  flex-shrink: 0;
  transition: background var(--transition-base), transform var(--transition-base);
}
.faq-item.open .faq-icon {
  background: var(--brand-primary);
  color: var(--white);
  transform: rotate(180deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.38s ease, padding 0.38s ease;
}
.faq-answer-inner {
  padding: 0 28px 24px;
  font-size: 0.92rem;
  color: var(--text-mid);
  line-height: 1.75;
}
.faq-item.open .faq-answer { max-height: 400px; }

/* ── CONTACT ── */
.contact { background: var(--white); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: start;
}
.contact-info-block {
  display: flex;
  flex-direction: column;
  gap: 36px;
}
.contact-info-item { display: flex; align-items: flex-start; gap: 16px; }
.contact-info-icon {
  width: 48px; height: 48px;
  border-radius: var(--radius-md);
  background: var(--brand-tint);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-primary);
  flex-shrink: 0;
}
.contact-info-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 4px;
}
.contact-info-value {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.4;
}
.contact-phone-link {
  font-family: 'Playfair Display', serif;
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--brand-primary);
  transition: color var(--transition-base);
}
.contact-phone-link:hover { color: var(--brand-dark); }
.hours-table { width: 100%; border-collapse: collapse; }
.hours-table tr { border-bottom: 1px solid var(--border); }
.hours-table tr:last-child { border-bottom: none; }
.hours-table td { padding: 7px 0; font-size: 0.88rem; }
.hours-table .day {
  font-weight: 600;
  color: var(--text-dark);
  width: 38px;
}
.hours-table .time { color: var(--text-mid); }
/* Right column */
.contact-right {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.contact-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border);
}
.contact-map iframe {
  display: block;
  width: 100%;
  height: 300px;
  border: none;
}
/* Contact form */
.contact-form {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 36px;
  border: 1px solid var(--border);
}
.contact-form h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: var(--text-dark);
  margin-bottom: 24px;
}
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-mid);
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: 'Inter', sans-serif;
  font-size: 0.92rem;
  color: var(--text-dark);
  background: var(--white);
  transition: border-color var(--transition-base), box-shadow var(--transition-base);
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--brand-primary);
  box-shadow: 0 0 0 3px rgba(26,94,168,0.12);
}
.form-group textarea { height: 110px; resize: vertical; }
.form-gdpr {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 20px;
  font-size: 0.8rem;
  color: var(--text-light);
  line-height: 1.5;
}
.form-gdpr input[type="checkbox"] {
  width: 16px; height: 16px;
  margin-top: 2px;
  accent-color: var(--brand-primary);
  flex-shrink: 0;
}
.form-gdpr a { color: var(--brand-primary); text-decoration: underline; }
.form-submit { width: 100%; justify-content: center; padding: 14px; }

/* ── FOOTER ── */
.footer {
  background: var(--brand-dark);
  padding: 56px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-logo-col { }
.footer-logo {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
  margin-bottom: 16px;
}
.footer-logo-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
}
.footer-logo-type {
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand-mid);
}
.footer-tagline {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.65;
  margin-bottom: 20px;
  max-width: 260px;
}
.footer-ico {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
}
.footer-col-title {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 16px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.62);
  transition: color var(--transition-base);
}
.footer-links a:hover { color: var(--white); }
.footer-contact-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
}
.footer-contact-row svg {
  width: 15px; height: 15px;
  color: var(--brand-mid);
  flex-shrink: 0;
  margin-top: 3px;
}
.footer-contact-row span {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.62);
  line-height: 1.5;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.footer-copy {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
}
.footer-legal {
  display: flex;
  gap: 20px;
}
.footer-legal a {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
  transition: color var(--transition-base);
}
.footer-legal a:hover { color: rgba(255,255,255,0.65); }

/* ── STICKY BOOKING CTA (mobile — hidden on desktop) ── */
.sticky-cta { display: none; }
