/* =====================================================
   ZUBNÍ ORDINACE GHAHRAMANYAN — styles.css
   Brand: Medical Blue  |  Fonts: Playfair Display + Inter
   ===================================================== */

/* ── CSS Variables ── */
:root {
  --brand-primary:   #1A5FA8;
  --brand-dark:      #0D3D6B;
  --brand-light:     #D6E9F8;
  --brand-tint:      #EEF6FD;
  --brand-mid:       #5B9FD4;
  --text-dark:       #111827;
  --text-mid:        #374151;
  --text-light:      #6B7280;
  --white:           #ffffff;
  --off-white:       #F8FBFE;
  --border:          #DBEAFE;
  --radius-lg:       16px;
  --radius-sm:       8px;
  --shadow-card:     0 2px 8px rgba(26,95,168,0.08), 0 8px 28px rgba(26,95,168,0.10);
  --shadow-elevated: 0 8px 20px rgba(26,95,168,0.14), 0 24px 48px rgba(26,95,168,0.12);
  --nav-height:      72px;
  --section-pad:     96px;
  --container-max:   1200px;
}

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

/* ── Typography ── */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  letter-spacing: -0.03em;
  line-height: 1.2;
}
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); }
p  { font-size: clamp(15px, 1.05vw, 17px); line-height: 1.75; color: var(--text-mid); }

/* ── Container ── */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 40px;
}

/* ── Section padding ── */
.section-pad { padding: var(--section-pad) 0; }

/* ── Section labels ── */
.section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand-primary);
  background: var(--brand-light);
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}
.section-heading {
  font-family: 'Playfair Display', serif;
  color: var(--text-dark);
  margin-bottom: 16px;
}
.section-sub {
  color: var(--text-light);
  max-width: 560px;
  font-size: 1.05rem;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  transition: background 0.2s ease, transform 0.2s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.2s ease;
  border: 2px solid transparent;
}
.btn:focus-visible { outline: 3px solid var(--brand-primary); outline-offset: 3px; }
.btn:active { transform: translateY(0) !important; }

.btn-primary {
  background: var(--brand-primary);
  color: white;
  box-shadow: 0 4px 14px rgba(26,95,168,0.35);
}
.btn-primary:hover {
  background: var(--brand-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(26,95,168,0.40);
}
.btn-outline {
  background: transparent;
  color: white;
  border-color: rgba(255,255,255,0.6);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: white;
  transform: translateY(-2px);
}

/* ── Scroll Animations ── */
.animate-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.5s cubic-bezier(0.22, 1, 0.36, 1), transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.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; }
.delay-6 { transition-delay: 0.36s; }

/* =====================================================
   NAVBAR
   ===================================================== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  transition: background 0.3s ease, backdrop-filter 0.3s ease, box-shadow 0.3s ease;
}
.navbar.scrolled {
  background: rgba(13,29,56,0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.06);
}
.nav-inner {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.1;
  flex-shrink: 0;
  gap: 2px;
}
.nav-logo-name {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  white-space: nowrap;
  letter-spacing: -0.01em;
}
.nav-logo-type {
  font-family: 'Inter', sans-serif;
  font-size: 0.6rem;
  font-weight: 600;
  color: var(--brand-mid);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  white-space: nowrap;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  flex: 1;
  justify-content: center;
}
.nav-links a {
  color: rgba(255,255,255,0.82);
  font-size: 0.88rem;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 6px;
  transition: color 0.2s ease, background 0.2s ease;
  position: relative;
}
.nav-links a:hover { color: white; background: rgba(255,255,255,0.1); }
.nav-links a:focus-visible { outline: 2px solid var(--brand-mid); outline-offset: 2px; }
.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}
.nav-phone {
  color: rgba(255,255,255,0.82);
  font-size: 0.88rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s ease;
}
.nav-phone:hover { color: white; }
.nav-phone svg { flex-shrink: 0; }
.nav-cta {
  background: var(--brand-primary);
  color: white;
  padding: 9px 20px;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  font-weight: 600;
  transition: background 0.2s ease, transform 0.2s cubic-bezier(0.34,1.56,0.64,1);
  box-shadow: 0 2px 8px rgba(26,95,168,0.3);
}
.nav-cta:hover { background: var(--brand-dark); transform: translateY(-1px); }
.nav-cta:focus-visible { outline: 2px solid var(--brand-mid); outline-offset: 2px; }

/* Hamburger */
.nav-hamburger {
  display: none;
  background: none;
  border: none;
  color: white;
  padding: 6px;
  margin-left: auto;
}
.nav-hamburger svg { display: block; }

/* Mobile Drawer */
.nav-drawer {
  position: fixed;
  inset: 0;
  background: rgba(7,20,45,0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.nav-drawer.open { opacity: 1; pointer-events: all; }
.nav-drawer a {
  color: rgba(255,255,255,0.85);
  font-size: 1.6rem;
  font-family: 'Playfair Display', serif;
  padding: 12px 24px;
  border-radius: 12px;
  transition: color 0.2s ease, background 0.2s ease;
}
.nav-drawer a:hover { color: white; background: rgba(255,255,255,0.08); }
.drawer-close {
  position: absolute;
  top: 20px; right: 24px;
  background: none; border: none;
  color: rgba(255,255,255,0.7);
  font-size: 1.8rem;
  line-height: 1;
  padding: 8px;
  transition: color 0.2s ease;
}
.drawer-close:hover { color: white; }
.drawer-phone {
  margin-top: 16px;
  font-size: 1.1rem;
  color: var(--brand-mid);
  font-weight: 600;
}

/* =====================================================
   HERO
   ===================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--brand-dark);
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
/* Gradient layers */
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(7,20,55,0.82) 0%, rgba(13,61,107,0.60) 55%, rgba(7,20,55,0.30) 100%);
  z-index: 1;
}
/* Bottom fade — covers image edge */
.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 220px;
  background: linear-gradient(to bottom, transparent, #0D3D6B 80%);
  z-index: 2;
  pointer-events: none;
}
/* Grain texture */
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  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: 200px 200px;
}
.hero-content {
  position: relative;
  z-index: 3;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 120px 40px 80px;
  width: 100%;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  color: white;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 100px;
  margin-bottom: 28px;
  backdrop-filter: blur(8px);
}
.hero-tag-dot {
  width: 7px; height: 7px;
  background: var(--brand-mid);
  border-radius: 50%;
}
.hero h1 {
  color: white;
  max-width: 680px;
  margin-bottom: 20px;
  text-shadow: 0 2px 24px rgba(0,0,0,0.25);
}
.hero-sub {
  color: rgba(255,255,255,0.82);
  font-size: 1.15rem;
  max-width: 480px;
  margin-bottom: 40px;
  line-height: 1.65;
}
.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 64px;
}
.hero-stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}
.hero-stat {
  display: flex;
  flex-direction: column;
}
.hero-stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  color: white;
  line-height: 1;
  letter-spacing: -0.04em;
}
.hero-stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.62);
  margin-top: 4px;
  letter-spacing: 0.04em;
}
/* Floating pill */
.hero-float-pill {
  position: absolute;
  bottom: 36px;
  right: max(40px, calc((100vw - var(--container-max)) / 2 + 40px));
  z-index: 3;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.22);
  backdrop-filter: blur(12px);
  border-radius: 100px;
  padding: 12px 22px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: white;
  font-size: 0.9rem;
  font-weight: 600;
  transition: background 0.2s ease, transform 0.2s ease;
}
.hero-float-pill:hover { background: rgba(255,255,255,0.2); transform: translateY(-2px); }
.hero-float-pill svg { color: var(--brand-mid); flex-shrink: 0; }


/* =====================================================
   ABOUT
   ===================================================== */
.about { background: var(--white); }
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-text {}
.about-body {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 40px;
}
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.stat-card {
  background: var(--brand-tint);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  text-align: center;
}
.stat-card-num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: var(--brand-primary);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 6px;
}
.stat-card-label {
  font-size: 0.78rem;
  color: var(--text-light);
  line-height: 1.4;
}
.about-image-wrap {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-elevated);
}
.about-image-wrap img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: center;
  display: block;
}
.about-image-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: white;
  border-radius: 12px;
  padding: 14px 20px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
  display: flex;
  align-items: center;
  gap: 12px;
}
.about-image-badge-icon {
  width: 40px; height: 40px;
  background: var(--brand-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.about-image-badge-icon svg { color: var(--brand-primary); }
.about-image-badge-text { font-size: 0.82rem; }
.about-image-badge-text strong { display: block; color: var(--text-dark); font-size: 0.95rem; }
.about-image-badge-text span { color: var(--text-light); }

/* =====================================================
   SERVICES
   ===================================================== */
.services { background: var(--off-white); }
.services-header { max-width: 540px; margin-bottom: 56px; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  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(-6px);
  box-shadow: var(--shadow-elevated);
}
.service-icon {
  width: 52px; height: 52px;
  background: var(--brand-tint);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.service-icon svg { color: var(--brand-primary); }
.service-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  color: var(--text-dark);
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}
.service-desc {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.65;
}

/* =====================================================
   CLINIC GALLERY
   ===================================================== */
.gallery { background: var(--brand-tint); }
.gallery-header { max-width: 540px; margin-bottom: 48px; }
.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 20px;
}
.gallery-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.04); }
.gallery-item--large {
  grid-row: span 2;
  height: 520px;
}
.gallery-item--sm { height: 240px; }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,61,107,0.35) 0%, transparent 60%);
}
.gallery-cta {
  margin-top: 40px;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.gallery-address {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-mid);
  font-size: 0.95rem;
}
.gallery-address svg { color: var(--brand-primary); flex-shrink: 0; }

/* =====================================================
   TEAM SECTION (adapted from snippet)
   ===================================================== */
#nas-tym { background: var(--white); }
.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: 280px;
  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(13,61,107,0.55) 0%, transparent 55%);
}
.team-body {
  padding: 20px 24px 24px;
}
.team-role {
  font-size: 0.70rem;
  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.15rem;
  color: var(--text-dark);
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.team-credentials {
  font-size: 0.82rem;
  color: var(--text-light);
  line-height: 1.55;
}
.team-email {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  font-size: 0.8rem;
  color: var(--brand-primary);
  transition: color 0.2s ease;
}
.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: 220px;
  flex-shrink: 0;
}
.team-card--pro .team-photo-wrap img {
  object-fit: cover;
  object-position: center top;
}
.team-hours-mini {
  flex: 1;
  background: var(--brand-tint);
  padding: 18px 16px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.thm-title {
  font-size: 0.60rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  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.4; }
.thm-d {
  font-size: 0.63rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-light);
  letter-spacing: 0.04em;
  width: 20px;
  padding-right: 8px;
}

/* Team 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(7,20,55,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: 24px;
  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: 24px 0 0 24px;
  min-height: 440px;
}
.modal-photo-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.modal-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,61,107,0.88) 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: 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: 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.12em;
  text-transform: uppercase;
  color: var(--brand-primary);
  background: var(--brand-tint);
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 10px;
}
.modal-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.7rem;
  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;
  transition: color 0.2s ease;
}
.modal-email:hover { color: var(--brand-dark); }
.modal-email svg { flex-shrink: 0; }
.modal-section { margin-bottom: 20px; }
.modal-section-title {
  font-size: 0.70rem;
  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.9rem;
  color: var(--text-mid);
  line-height: 1.5;
}
.modal-item-year {
  font-size: 0.75rem;
  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.9rem;
  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;
}

/* =====================================================
   INSURANCE
   ===================================================== */
.insurance { background: var(--off-white); }
.insurance-header { max-width: 540px; margin-bottom: 48px; }
.insurance-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}
.insurance-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  min-width: 148px;
  flex: 1;
  max-width: 180px;
  box-shadow: var(--shadow-card);
  transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.3s ease;
}
.insurance-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-elevated);
}
.insurance-logo-wrap {
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.insurance-logo-wrap img {
  max-height: 52px;
  max-width: 120px;
  object-fit: contain;
}
.insurance-number {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: var(--brand-primary);
  font-weight: 700;
  letter-spacing: -0.02em;
}
.insurance-name {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-light);
  text-align: center;
  line-height: 1.4;
}

/* =====================================================
   CONTACT & HOURS
   ===================================================== */
.contact { background: var(--brand-tint); }
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.contact-hours-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  color: var(--text-dark);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}
.hours-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 32px;
}
.hours-table tr {
  border-bottom: 1px solid var(--border);
}
.hours-table tr:last-child { border-bottom: none; }
.hours-table td {
  padding: 12px 0;
  font-size: 0.92rem;
}
.hours-day {
  font-weight: 600;
  color: var(--text-dark);
  width: 130px;
}
.hours-time {
  color: var(--brand-primary);
  font-weight: 500;
}
.hours-closed {
  color: var(--text-light);
}
.hours-table tr.row-closed .hours-day { color: var(--text-light); font-weight: 400; }

.contact-info-block {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 28px;
}
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.contact-info-icon {
  width: 40px; height: 40px;
  background: var(--brand-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-info-icon svg { color: var(--brand-primary); }
.contact-info-text { font-size: 0.92rem; color: var(--text-mid); }
.contact-info-text strong { display: block; color: var(--text-dark); font-weight: 600; font-size: 0.95rem; margin-bottom: 2px; }
.contact-info-text a { color: var(--brand-primary); font-weight: 600; transition: color 0.2s ease; }
.contact-info-text a:hover { color: var(--brand-dark); }

.map-embed {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
}
.map-embed iframe {
  width: 100%;
  height: 300px;
  display: block;
  border: none;
}

/* =====================================================
   FOOTER
   ===================================================== */
.footer {
  background: #07142D;
  color: rgba(255,255,255,0.65);
  padding: 64px 0 36px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 3px;
  line-height: 1.1;
  margin-bottom: 16px;
}
.footer-logo-name {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.01em;
}
.footer-logo-type {
  font-family: 'Inter', sans-serif;
  font-size: 0.6rem;
  font-weight: 600;
  color: var(--brand-mid);
  text-transform: uppercase;
  letter-spacing: 0.14em;
}
.footer-tagline { font-size: 0.88rem; line-height: 1.6; max-width: 280px; }
.footer-heading {
  color: rgba(255,255,255,0.85);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  transition: color 0.2s ease;
}
.footer-links a:hover { color: white; }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.88rem;
}
.footer-contact-item svg { color: var(--brand-mid); flex-shrink: 0; margin-top: 2px; }
.footer-contact-item a { color: rgba(255,255,255,0.65); transition: color 0.2s ease; }
.footer-contact-item a:hover { color: white; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-copy { font-size: 0.82rem; }
.footer-legal { font-size: 0.82rem; }
.footer-legal a { color: rgba(255,255,255,0.5); transition: color 0.2s ease; }
.footer-legal a:hover { color: white; }
