/* ============================================================
   3D DENTAL BISHKEK — Clean Clinical Design System
   Palette: #ffffff bg / #f7fafa surface / #0e8a7b accent
   Fonts: Source Serif 4 (headings) + Inter (body)
   ============================================================ */

/* --- RESET & CUSTOM PROPERTIES --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #ffffff;
  --surface: #f7fafa;
  --surface-alt: #eef5f4;
  --accent: #0e8a7b;
  --accent-hover: #0ba392;
  --accent-light: rgba(14,138,123,0.07);
  --accent-mid: rgba(14,138,123,0.14);
  --text: #1a2332;
  --text-muted: #5a6a7a;
  --text-dim: #8a96a4;
  --border: #e2e8f0;
  --border-strong: #cbd5e0;
  --white: #ffffff;
  --shadow-xs: 0 1px 2px rgba(26,35,50,0.04);
  --shadow-sm: 0 1px 3px rgba(26,35,50,0.06), 0 1px 2px rgba(26,35,50,0.04);
  --shadow-md: 0 4px 16px rgba(26,35,50,0.07), 0 2px 6px rgba(26,35,50,0.04);
  --shadow-lg: 0 12px 40px rgba(26,35,50,0.10), 0 4px 12px rgba(26,35,50,0.05);
  --shadow-accent: 0 8px 24px rgba(14,138,123,0.22);
  --radius: 12px;
  --radius-lg: 18px;
  --radius-xl: 28px;
  --font-head: 'Source Serif 4', Georgia, serif;
  --font-body: 'Inter', -apple-system, sans-serif;
  --header-h: 72px;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
address { font-style: normal; }
ul, ol { list-style: none; }

/* --- TYPOGRAPHY --- */
h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 600;
  line-height: 1.18;
  letter-spacing: -0.01em;
  color: var(--text);
}

h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.8vw, 2.8rem); }
h3 { font-size: clamp(1.15rem, 2.2vw, 1.45rem); }
h4 { font-size: 1rem; font-weight: 600; }

em { font-style: italic; color: var(--accent); }
p { color: var(--text-muted); line-height: 1.7; }

/* --- LAYOUT --- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-pad { padding: 80px 0; }
.surface { background: var(--surface); }

.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--accent);
  padding: 5px 14px;
  background: var(--accent-light);
  border-radius: 100px;
  margin-bottom: 14px;
}

.section-title { margin-bottom: 44px; }

/* --- HEADER --- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s var(--ease);
}

.site-header.scrolled { box-shadow: var(--shadow-md); }

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  height: var(--header-h);
  display: flex;
  align-items: center;
  gap: 24px;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.logo-img {
  height: 52px;
  width: 52px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}

.logo-text {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
}

.main-nav {
  display: none;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}

.nav-link {
  padding: 8px 14px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  border-radius: 8px;
  transition: color 0.2s var(--ease), background 0.2s var(--ease);
  white-space: nowrap;
}

.nav-link:hover, .nav-link.active {
  color: var(--accent);
  background: var(--accent-light);
}

.btn-header {
  display: none;
  padding: 10px 22px;
  background: var(--accent);
  color: var(--white);
  border-radius: 10px;
  font-size: 0.875rem;
  font-weight: 600;
  transition: background 0.2s var(--ease), transform 0.15s var(--ease);
  white-space: nowrap;
  flex-shrink: 0;
  min-height: 44px;
  align-items: center;
}

.btn-header:hover { background: var(--accent-hover); transform: translateY(-1px); }

.burger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
  min-width: 44px;
  min-height: 44px;
  justify-content: center;
  align-items: center;
}

.burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s var(--ease);
  transform-origin: center;
}

.burger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.burger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Nav Overlay */
.mobile-nav {
  position: fixed;
  top: var(--header-h);
  left: 0; right: 0; bottom: 0;
  background: var(--white);
  z-index: 99;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transform: translateX(100%);
  transition: transform 0.35s var(--ease);
  overflow-y: auto;
}

.mobile-nav.open { transform: translateX(0); }

.mobile-nav a {
  display: flex;
  align-items: center;
  padding: 14px 16px;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text);
  border-radius: var(--radius);
  transition: all 0.2s var(--ease);
  border-bottom: 1px solid var(--border);
}

.mobile-nav a:hover,
.mobile-nav a.active {
  color: var(--accent);
  background: var(--accent-light);
}

.mobile-nav-footer {
  margin-top: auto;
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mobile-nav-footer .btn-primary { width: 100%; justify-content: center; }

/* --- BUTTONS --- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: var(--accent);
  color: var(--white);
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: background 0.2s var(--ease), transform 0.15s var(--ease), box-shadow 0.2s var(--ease);
  min-height: 48px;
  white-space: nowrap;
}

.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-accent);
}

.btn-primary.btn-large { padding: 16px 36px; font-size: 1rem; min-height: 56px; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border-strong);
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  transition: border-color 0.2s var(--ease), color 0.2s var(--ease), transform 0.15s var(--ease);
  min-height: 48px;
}

.btn-ghost:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-1px); }

.btn-outline-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.5);
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s var(--ease);
  min-height: 48px;
}

.btn-outline-white:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.12);
  transform: translateY(-1px);
}

.btn-outline-white.btn-large { padding: 16px 36px; font-size: 1rem; min-height: 56px; }

.link-arrow {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent);
}

.link-arrow:hover { text-decoration: underline; }

/* --- HERO: split-half --- */
.hero {
  display: flex;
  flex-direction: column;
  min-height: calc(100vh - var(--header-h));
  padding-top: var(--header-h);
  overflow: hidden;
}

.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 48px 20px 40px;
}

.hero-eyebrow {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
}

.hero-title {
  font-size: clamp(2.4rem, 6vw, 4rem);
  line-height: 1.08;
  margin-bottom: 18px;
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 460px;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 40px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}

.stat { display: flex; flex-direction: column; gap: 2px; }

.stat-num {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}

.stat-label {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.stat-divider { width: 1px; height: 32px; background: var(--border); flex-shrink: 0; }

.hero-right {
  position: relative;
  background: var(--surface);
  overflow: hidden;
  min-height: 340px;
  order: -1;
}

.hero-img-wrap {
  position: relative;
  height: 100%;
  min-height: 340px;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.hero-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border-radius: 100px;
  padding: 10px 18px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--accent);
  box-shadow: var(--shadow-md);
}

.hero-badge svg { flex-shrink: 0; }

/* --- PAGE HERO --- */
.page-hero {
  padding: calc(var(--header-h) + 48px) 0 56px;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}

.page-hero-inner { max-width: 640px; }
.page-hero h1 { margin-bottom: 14px; }
.page-hero p { font-size: 1.05rem; max-width: 500px; }

/* --- UTP SECTION --- */
.utp-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 40px;
}

.utp-card {
  padding: 28px 24px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease), transform 0.25s var(--ease);
}

.utp-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.utp-icon {
  width: 48px;
  height: 48px;
  background: var(--accent-light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 16px;
}

.utp-card h3 { font-size: 1.05rem; margin-bottom: 8px; }
.utp-card p { font-size: 0.88rem; }

/* --- SERVICE CARDS: photo-left --- */
.service-cards { display: flex; flex-direction: column; gap: 32px; }
.services-full .container { display: flex; flex-direction: column; gap: 32px; }

.service-card {
  display: flex;
  flex-direction: column;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow 0.3s var(--ease), transform 0.3s var(--ease);
}

.service-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }

.sc-img {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}

.sc-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover .sc-img img { transform: scale(1.04); }

.sc-body {
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}

.sc-tag {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-light);
  padding: 4px 10px;
  border-radius: 100px;
  width: fit-content;
}

.sc-body h2 { font-size: clamp(1.3rem, 2.5vw, 1.7rem); }
.sc-body h3 { font-size: 1.15rem; }
.sc-body p { font-size: 0.92rem; }

.service-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 4px 0;
}

.service-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.service-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  margin-top: 8px;
}

.sc-link {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--accent);
  margin-top: 4px;
  display: inline-block;
}

.sc-link:hover { text-decoration: underline; }

/* --- SECTION HEADER --- */
.section-header {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 40px;
}

.section-header h2 { margin-bottom: 0; }

/* --- CTA SECTION --- */
.cta-section {
  background: var(--accent);
  padding: 64px 0;
  overflow: hidden;
}

.cta-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 32px;
}

.cta-text h2 { color: var(--white); font-size: clamp(1.7rem, 3.5vw, 2.5rem); }
.cta-text p { color: rgba(255,255,255,0.82); font-size: 1.02rem; margin-top: 8px; }

.cta-actions { display: flex; flex-direction: column; gap: 12px; width: 100%; max-width: 400px; }

.cta-actions .btn-primary,
.cta-actions .btn-outline-white { width: 100%; justify-content: center; }

/* --- TEAM --- */
.team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 16px;
}

.team-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow 0.3s var(--ease), transform 0.3s var(--ease);
}

.team-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }

.team-img-wrap {
  aspect-ratio: 4/3;
  overflow: hidden;
}

.team-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform 0.5s ease;
}

.team-card:hover .team-img-wrap img { transform: scale(1.04); }

.team-info {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.team-info h3 { font-size: 1.1rem; margin-bottom: 2px; }

.team-role {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
}

.team-info p { font-size: 0.875rem; margin: 4px 0; }

.team-ig {
  font-size: 0.84rem;
  font-weight: 500;
  color: var(--accent);
  margin-top: 4px;
  transition: opacity 0.2s;
}

.team-ig:hover { opacity: 0.7; }

/* --- REVIEWS --- */
.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 16px;
}

.review-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: box-shadow 0.3s var(--ease);
}

.review-card:hover { box-shadow: var(--shadow-md); }

.review-stars {
  color: #f59e0b;
  font-size: 1rem;
  letter-spacing: 2px;
}

.review-card > p { font-size: 0.93rem; flex: 1; color: var(--text); font-style: italic; font-family: var(--font-head); line-height: 1.6; }

.review-author { display: flex; flex-direction: column; gap: 2px; padding-top: 12px; border-top: 1px solid var(--border); }
.review-name { font-weight: 600; font-size: 0.875rem; color: var(--text); }

.review-source {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* --- MASONRY GALLERY --- */
.masonry-grid {
  columns: 2;
  column-gap: 12px;
  margin-top: 16px;
}

.masonry-item {
  break-inside: avoid;
  margin-bottom: 12px;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.masonry-item.tall img { aspect-ratio: 2/3; }

.masonry-item img {
  width: 100%;
  display: block;
  object-fit: cover;
  aspect-ratio: 3/2;
  transition: transform 0.4s ease;
}

.masonry-item:hover img { transform: scale(1.04); }

.masonry-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(14,138,123,0.75) 0%, transparent 55%);
  display: flex;
  align-items: flex-end;
  padding: 14px;
  opacity: 0;
  transition: opacity 0.3s var(--ease);
}

.masonry-item:hover .masonry-overlay { opacity: 1; }

.masonry-overlay span {
  color: white;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.03em;
}

/* --- GALLERY FEATURE --- */
.feature-pair {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 16px;
}

.fp-img { position: relative; border-radius: var(--radius-lg); overflow: hidden; }

.fp-img img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.fp-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 14px 18px;
  background: linear-gradient(transparent, rgba(26,35,50,0.65));
  color: white;
  font-size: 0.82rem;
  font-weight: 500;
}

.gallery-note {
  margin-top: 24px;
  font-size: 0.95rem;
  max-width: 600px;
  color: var(--text-muted);
}

/* --- CONTACTS --- */
.contacts-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: start;
}

.contacts-info {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

.contact-card:hover { border-color: var(--accent); box-shadow: var(--shadow-sm); }

.contact-icon {
  width: 44px;
  height: 44px;
  background: var(--accent-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}

.contact-icon.whatsapp { background: rgba(37,211,102,0.1); color: #25d366; }

.contact-body { display: flex; flex-direction: column; gap: 2px; }
.contact-body h3 { font-size: 0.875rem; font-weight: 600; margin-bottom: 2px; font-family: var(--font-body); }

.contact-value {
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--text);
  transition: color 0.2s;
}

a.contact-value:hover { color: var(--accent); }
.contact-body p { font-size: 0.8rem; }

/* --- BOOKING PANEL --- */
.booking-panel {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
}

.booking-header h2 { font-size: 1.65rem; margin-bottom: 8px; }
.booking-header p { font-size: 0.92rem; margin-bottom: 24px; }

.booking-options { display: flex; flex-direction: column; gap: 12px; }

.booking-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  border-radius: 10px;
  font-size: 0.92rem;
  font-weight: 600;
  transition: transform 0.15s var(--ease), box-shadow 0.2s var(--ease);
  min-height: 52px;
}

.booking-btn:hover { transform: translateY(-2px); }

.whatsapp-btn { background: #25d366; color: white; }
.whatsapp-btn:hover { box-shadow: 0 6px 20px rgba(37,211,102,0.3); }

.phone-btn { background: var(--accent); color: white; }
.phone-btn:hover { background: var(--accent-hover); box-shadow: var(--shadow-accent); }

.instagram-btn { background: var(--surface); color: var(--text); border: 1px solid var(--border); }
.instagram-btn:hover { border-color: var(--accent); color: var(--accent); }

.booking-free-offer {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 20px;
  padding: 14px;
  background: var(--accent-light);
  border-radius: 10px;
}

.offer-check {
  width: 28px;
  height: 28px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
}

.booking-free-offer p { font-size: 0.85rem; color: var(--text); margin: 0; }

/* --- MAP --- */
.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  position: relative;
}

.map-address-pin {
  position: absolute;
  top: 14px; left: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  background: white;
  padding: 8px 14px;
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text);
  box-shadow: var(--shadow-md);
}

.map-address-pin svg { color: var(--accent); }

.map-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 20px;
}

.map-actions .btn-primary,
.map-actions .btn-ghost { width: 100%; justify-content: center; }

/* --- FOOTER --- */
.site-footer {
  background: var(--text);
  color: rgba(255,255,255,0.85);
  padding: 56px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand .logo-link { margin-bottom: 14px; display: inline-flex; }
.footer-brand .logo-text { color: white; }
.footer-brand .logo-img { border: 2px solid rgba(255,255,255,0.15); }
.footer-brand p { font-size: 0.875rem; color: rgba(255,255,255,0.55); line-height: 1.65; }

.footer-nav, .footer-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-nav h4, .footer-contact h4 {
  color: white;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 4px;
  font-family: var(--font-body);
}

.footer-nav a, .footer-contact a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}

.footer-nav a:hover, .footer-contact a:hover { color: var(--accent-hover); }

.footer-contact address {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  text-align: center;
  padding: 20px 0;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
}

/* --- SCROLL REVEAL --- */
.reveal-scale {
  opacity: 0;
  transform: scale(0.97) translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
  transition-delay: var(--delay, 0s);
}

.reveal-scale.revealed {
  opacity: 1;
  transform: scale(1) translateY(0);
}

/* --- SCHEMA.ORG hidden --- */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ============================================================
   RESPONSIVE — Tablet 768px+
   ============================================================ */
@media (min-width: 768px) {
  .container { padding: 0 32px; }

  .main-nav { display: flex; }
  .btn-header { display: flex; }
  .burger { display: none; }
  .mobile-nav { display: none !important; }

  .hero {
    flex-direction: row;
    min-height: calc(100vh - var(--header-h));
  }

  .hero-left {
    flex: 1;
    padding: 60px 48px;
    max-width: 560px;
    margin-left: auto;
    order: 0;
  }

  .hero-right {
    flex: 1;
    order: 0;
    min-height: auto;
  }

  .hero-img-wrap { min-height: 100%; }

  .hero-actions { flex-direction: row; }

  .utp-grid { grid-template-columns: repeat(2, 1fr); }

  .service-card {
    flex-direction: row;
  }

  .service-card .sc-img {
    width: 45%;
    flex-shrink: 0;
    aspect-ratio: auto;
  }

  .service-card .sc-body {
    flex: 1;
    padding: 36px;
  }

  .service-card.photo-right {
    flex-direction: row-reverse;
  }

  .team-grid { grid-template-columns: repeat(2, 1fr); }

  .reviews-grid { grid-template-columns: repeat(2, 1fr); }

  .masonry-grid { columns: 3; column-gap: 16px; }
  .masonry-item { margin-bottom: 16px; }

  .feature-pair { grid-template-columns: 1fr 1fr; }

  .contacts-grid { grid-template-columns: 1fr 1fr; }
  .booking-panel { position: sticky; top: 96px; padding: 36px; }

  .footer-grid { grid-template-columns: 2fr 1fr 1fr; }
  .footer-bottom { flex-direction: row; justify-content: space-between; }

  .cta-inner { flex-direction: row; text-align: left; justify-content: space-between; }
  .cta-actions { width: auto; max-width: none; flex-shrink: 0; }

  .section-header { flex-direction: row; align-items: flex-start; justify-content: space-between; }

  .map-actions { flex-direction: row; }
  .map-actions .btn-primary,
  .map-actions .btn-ghost { width: auto; }

  .page-hero { padding: calc(var(--header-h) + 56px) 0 64px; }
  .section-pad { padding: 96px 0; }
}

/* ============================================================
   RESPONSIVE — Desktop 1024px+
   ============================================================ */
@media (min-width: 1024px) {
  .container { padding: 0 40px; }

  .hero-left {
    padding: 80px 64px;
    max-width: 640px;
  }

  .utp-grid { grid-template-columns: repeat(4, 1fr); }

  .team-grid { grid-template-columns: repeat(3, 1fr); }
  .reviews-grid { grid-template-columns: repeat(3, 1fr); }

  .masonry-grid { columns: 4; }
}

/* ============================================================
   RESPONSIVE — Small mobile 480px-
   ============================================================ */
@media (max-width: 480px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }

  .hero-stats .stat-divider { display: none; }
  .hero-stats { gap: 16px; }
  .section-pad { padding: 56px 0; }
  .booking-panel { padding: 24px 20px; }
  .contact-card { flex-direction: column; gap: 10px; }
}
