/* ═══════════════════════════════════════════════
   USABDENT — Dark Elegance
   Ультра-тёмный с тёплым золотом
   ═══════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&family=Cormorant+Garamond:wght@300;400;500;600&family=Lato:wght@300;400;700&display=swap');

:root {
  --bg: #0d0b09;
  --surface: #181614;
  --accent: #c9a96e;
  --accent-hover: #d4b87a;
  --text: #e8dcc8;
  --text-muted: #8a8078;
  --border: #2a2520;
  --accent-rgb: 201, 169, 110;
  --bg-rgb: 13, 11, 9;
  --heading-font: 'Playfair Display', serif;
  --body-font: 'Cormorant Garamond', serif;
  --label-font: 'Lato', sans-serif;
  --heading-weight: 700;
  --body-weight: 400;
  --radius: 20px;
  --radius-sm: 10px;
  --shadow: 0 4px 30px rgba(0,0,0,0.06);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.1);
  --transition: 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ── Reset ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html {
  font-size: 17px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--body-font);
  font-weight: var(--body-weight);
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: color var(--transition);
}
a:hover { color: var(--accent-hover); }

h1, h2, h3, h4 {
  font-family: var(--heading-font);
  font-weight: var(--heading-weight);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  line-height: 1.2;
  color: var(--text);
}

.service-card, .team-card, .hero h1, .section-header h2 {
  overflow-wrap: break-word;
  word-break: break-word;
}

/* ── Preloader ── */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
.preloader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.preloader-logo {
  font-family: var(--heading-font);
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.preloader-spinner {
  width: 40px;
  height: 40px;
  border: 2px solid var(--border);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ── Container ── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ═══════════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  background: rgba(13, 11, 9, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: all var(--transition);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-logo img {
  height: 52px;
  width: 52px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  border: 1px solid rgba(201,169,110,0.3);
}
.nav-logo span {
  font-family: var(--heading-font);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--text);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  font-family: var(--label-font);
  font-size: 0.82rem;
  font-weight: 400;
  color: var(--text-muted);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width var(--transition);
}
.nav-links a:hover { color: var(--accent); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  font-family: var(--label-font);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 10px 24px;
  border: 1px solid var(--accent);
  color: var(--accent);
  border-radius: 0;
  transition: all var(--transition);
}
.nav-cta:hover {
  background: var(--accent);
  color: var(--bg);
}

/* Burger */
.burger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
  background: none;
  border: none;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}
.burger span {
  display: block;
  width: 28px;
  height: 1.5px;
  background: var(--accent);
  transition: all 0.3s ease;
}
.burger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.burger.active span:nth-child(2) { opacity: 0; }
.burger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(13, 11, 9, 0.98);
  backdrop-filter: blur(30px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}
.mobile-menu.active { opacity: 1; visibility: visible; }
.mobile-menu a {
  font-family: var(--heading-font);
  font-size: 1.8rem;
  color: var(--text);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color var(--transition);
}
.mobile-menu a:hover { color: var(--accent); }

/* ═══════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding-top: 100px;
  overflow: hidden;
}

/* CSS geometric background - no photo background */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 600px 400px at 75% 50%, rgba(201,169,110,0.08) 0%, transparent 70%),
    radial-gradient(ellipse 300px 300px at 20% 80%, rgba(201,169,110,0.03) 0%, transparent 60%);
  pointer-events: none;
}

/* Geometric wireframe decorations */
.hero::after {
  content: '';
  position: absolute;
  top: 10%;
  right: 5%;
  width: 400px;
  height: 400px;
  background:
    linear-gradient(135deg, transparent 40%, rgba(201,169,110,0.06) 40%, rgba(201,169,110,0.06) 40.5%, transparent 40.5%),
    linear-gradient(45deg, transparent 60%, rgba(201,169,110,0.04) 60%, rgba(201,169,110,0.04) 60.5%, transparent 60.5%),
    linear-gradient(90deg, transparent 30%, rgba(201,169,110,0.03) 30%, rgba(201,169,110,0.03) 30.5%, transparent 30.5%);
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-text {
  max-width: 560px;
}

.hero-badge {
  display: inline-block;
  font-family: var(--label-font);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid rgba(201,169,110,0.3);
  padding: 6px 16px;
  margin-bottom: 24px;
}

.hero h1 {
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  line-height: 1.1;
  margin-bottom: 20px;
  color: var(--text);
}

.hero-subtitle {
  font-family: var(--body-font);
  font-size: 1.2rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 32px;
  max-width: 460px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  gap: 40px;
}

.hero-stat {
  text-align: center;
}
.hero-stat .number {
  display: block;
  font-family: var(--heading-font);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}
.hero-stat .label {
  display: block;
  font-family: var(--label-font);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 8px;
}

/* Hero photo - oval with gold glow */
.hero-photo {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-photo-oval {
  width: 380px;
  height: 480px;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid rgba(201,169,110,0.3);
  box-shadow: 0 0 80px rgba(201,169,110,0.1), 0 0 160px rgba(201,169,110,0.05);
  position: relative;
  z-index: 2;
}
.hero-photo-oval img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Wireframe decoration near hero oval */
.hero-wireframe {
  position: absolute;
  top: -20px;
  right: -30px;
  width: 200px;
  height: 200px;
  z-index: 1;
  opacity: 0.06;
}
.hero-wireframe-bottom {
  position: absolute;
  bottom: -20px;
  left: -20px;
  width: 150px;
  height: 150px;
  z-index: 1;
  opacity: 0.06;
}

/* ═══════════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--label-font);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 14px 32px;
  min-height: 44px;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  position: relative;
}
.btn-primary {
  background: var(--accent);
  color: var(--bg);
}
.btn-primary:hover {
  background: var(--accent-hover);
  color: var(--bg);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201,169,110,0.25);
}
.btn-outline {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}
.btn-outline:hover {
  background: var(--accent);
  color: var(--bg);
  transform: translateY(-2px);
}

/* ═══════════════════════════════════════════════
   SECTIONS
   ═══════════════════════════════════════════════ */
.section {
  padding: 100px 0;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-header h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin-bottom: 16px;
  overflow-wrap: break-word;
  word-break: break-word;
}
.section-header p {
  font-family: var(--body-font);
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
}

/* Section dividers */
.section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}
.section-divider::before,
.section-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}
.section-divider .divider-accent {
  width: 40px;
  height: 1px;
  background: var(--accent);
  margin: 0 16px;
}

/* ═══════════════════════════════════════════════
   SERVICES GRID — 3+2 flex layout
   ═══════════════════════════════════════════════ */
.services-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.service-card {
  width: calc(33.333% - 27px);
  text-align: center;
  padding: 32px 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all var(--transition);
  overflow-wrap: break-word;
  word-break: break-word;
}
.service-card:hover {
  border-color: rgba(201,169,110,0.3);
  transform: translateY(-6px);
  box-shadow: 0 0 50px rgba(201,169,110,0.08);
}

.service-card-photo {
  width: 160px;
  height: 200px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 24px;
  border: 1px solid rgba(201,169,110,0.3);
  box-shadow: 0 0 40px rgba(201,169,110,0.15);
  transition: box-shadow var(--transition);
}
.service-card:hover .service-card-photo {
  box-shadow: 0 0 60px rgba(201,169,110,0.25);
}
.service-card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Placeholder for services without photos */
.service-card-icon {
  width: 160px;
  height: 200px;
  border-radius: 50%;
  margin: 0 auto 24px;
  border: 1px solid rgba(201,169,110,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201,169,110,0.03);
}
.service-card-icon svg {
  width: 48px;
  height: 48px;
  stroke: var(--accent);
  opacity: 0.5;
}

.service-card h3 {
  font-family: var(--heading-font);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 12px;
  color: var(--text);
}

.service-card p {
  font-family: var(--body-font);
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 16px;
}

.service-card .card-link {
  font-family: var(--label-font);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  transition: color var(--transition);
}
.service-card .card-link:hover { color: var(--accent-hover); }

.service-promo {
  display: inline-block;
  font-family: var(--label-font);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bg);
  background: var(--accent);
  padding: 4px 12px;
  margin-bottom: 12px;
}

/* ═══════════════════════════════════════════════
   TEAM GRID — oval portraits
   ═══════════════════════════════════════════════ */
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
  max-width: 600px;
  margin: 0 auto;
}

.team-card {
  text-align: center;
  overflow-wrap: break-word;
  word-break: break-word;
}
.team-card-photo {
  width: 200px;
  height: 260px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 24px;
  border: 1px solid rgba(201,169,110,0.3);
  box-shadow: 0 0 40px rgba(201,169,110,0.12);
  transition: box-shadow var(--transition);
}
.team-card:hover .team-card-photo {
  box-shadow: 0 0 60px rgba(201,169,110,0.2);
}
.team-card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.team-card h3 {
  font-family: var(--heading-font);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 6px;
  letter-spacing: 0.06em;
}
.team-card .role {
  font-family: var(--label-font);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}
.team-card .spec {
  font-family: var(--body-font);
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ═══════════════════════════════════════════════
   REVIEWS
   ═══════════════════════════════════════════════ */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
}
.review-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  position: relative;
  transition: all var(--transition);
}
.review-card:hover {
  border-color: rgba(201,169,110,0.3);
  transform: translateY(-3px);
}
.review-card::before {
  content: '\201C';
  font-family: var(--heading-font);
  font-size: 4rem;
  color: var(--accent);
  opacity: 0.2;
  position: absolute;
  top: 12px;
  left: 24px;
  line-height: 1;
}
.review-card p {
  font-family: var(--body-font);
  font-size: 1rem;
  font-style: italic;
  color: var(--text);
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

/* ═══════════════════════════════════════════════
   GALLERY GRID — 3 cols, square, gold hover
   ═══════════════════════════════════════════════ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 1000px;
  margin: 0 auto;
}
.gallery-item {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition);
}
.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201,169,110,0.0) 0%, rgba(201,169,110,0.0) 100%);
  transition: background var(--transition);
  pointer-events: none;
}
.gallery-item:hover img {
  transform: scale(1.05);
}
.gallery-item:hover::after {
  background: linear-gradient(135deg, rgba(201,169,110,0.15) 0%, rgba(201,169,110,0.05) 100%);
}

/* ═══════════════════════════════════════════════
   CTA SECTION
   ═══════════════════════════════════════════════ */
.cta-section {
  text-align: center;
  padding: 80px 0;
  position: relative;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 500px 300px at 50% 50%, rgba(201,169,110,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.cta-section h2 {
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  margin-bottom: 16px;
}
.cta-section p {
  font-family: var(--body-font);
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 32px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ═══════════════════════════════════════════════
   UTP / FEATURES
   ═══════════════════════════════════════════════ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1000px;
  margin: 0 auto;
}
.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  transition: all var(--transition);
}
.feature-card:hover {
  border-color: rgba(201,169,110,0.3);
  transform: translateY(-4px);
}
.feature-number {
  font-family: var(--heading-font);
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
  opacity: 0.3;
  margin-bottom: 12px;
}
.feature-card h3 {
  font-family: var(--heading-font);
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  margin-bottom: 12px;
}
.feature-card p {
  font-family: var(--body-font);
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ═══════════════════════════════════════════════
   CONTACTS
   ═══════════════════════════════════════════════ */
.contact-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 800px;
  margin: 0 auto;
}
.contact-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: all var(--transition);
}
.contact-item:hover {
  border-color: rgba(201,169,110,0.3);
}
.contact-item-label {
  font-family: var(--label-font);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}
.contact-item-value {
  font-family: var(--body-font);
  font-size: 1.05rem;
  color: var(--text);
  line-height: 1.5;
}
.contact-item-value a {
  color: var(--text);
  transition: color var(--transition);
}
.contact-item-value a:hover {
  color: var(--accent);
}

.map-container {
  width: 100%;
  height: 400px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 48px;
}
.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(0.8) brightness(0.5) contrast(1.1);
}

/* ═══════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════ */
.footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 48px 0 32px;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.footer-brand img {
  height: 40px;
  width: 40px;
  border-radius: 50%;
  object-fit: cover;
}
.footer-brand span {
  font-family: var(--heading-font);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.footer-tagline {
  font-family: var(--body-font);
  font-size: 0.9rem;
  color: var(--text-muted);
  max-width: 300px;
}
.footer-links {
  list-style: none;
}
.footer-links li { margin-bottom: 8px; }
.footer-links a {
  font-family: var(--label-font);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--accent); }
.footer-contact-item {
  font-family: var(--body-font);
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 6px;
}
.footer-contact-item a { color: var(--text-muted); }
.footer-contact-item a:hover { color: var(--accent); }
.footer-bottom {
  text-align: center;
  padding-top: 32px;
  margin-top: 32px;
  border-top: 1px solid var(--border);
  font-family: var(--label-font);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}

/* ═══════════════════════════════════════════════
   STICKY BOTTOM BAR (mobile CTA)
   ═══════════════════════════════════════════════ */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 998;
  background: rgba(13, 11, 9, 0.95);
  backdrop-filter: blur(20px);
  border-top: 1px solid var(--border);
  padding: 12px 24px;
  gap: 12px;
  justify-content: center;
}
.sticky-cta .btn {
  flex: 1;
  max-width: 200px;
  font-size: 0.72rem;
  padding: 12px 16px;
}

/* ═══════════════════════════════════════════════
   PAGE HEADER (inner pages)
   ═══════════════════════════════════════════════ */
.page-header {
  padding: 140px 0 60px;
  text-align: center;
  position: relative;
}
.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 400px 200px at 50% 70%, rgba(201,169,110,0.05) 0%, transparent 70%);
  pointer-events: none;
}
.page-header h1 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  margin-bottom: 16px;
}
.page-header p {
  font-family: var(--body-font);
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 500px;
  margin: 0 auto;
}

/* ═══════════════════════════════════════════════
   SERVICES PAGE — full cards
   ═══════════════════════════════════════════════ */
.services-full-grid {
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
}
.service-full-card {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 32px;
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transition: all var(--transition);
}
.service-full-card:hover {
  border-color: rgba(201,169,110,0.3);
  transform: translateY(-3px);
}
.service-full-card-photo {
  width: 160px;
  height: 200px;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid rgba(201,169,110,0.3);
  box-shadow: 0 0 40px rgba(201,169,110,0.15);
  flex-shrink: 0;
}
.service-full-card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.service-full-card-no-photo {
  width: 160px;
  height: 200px;
  border-radius: 50%;
  border: 1px solid rgba(201,169,110,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201,169,110,0.03);
  flex-shrink: 0;
}
.service-full-card h3 {
  font-family: var(--heading-font);
  font-size: 1.15rem;
  letter-spacing: 0.06em;
  margin-bottom: 12px;
}
.service-full-card p {
  font-family: var(--body-font);
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ═══════════════════════════════════════════════
   HOVER & PSEUDO DECORATIONS
   ═══════════════════════════════════════════════ */
.gold-line {
  width: 40px;
  height: 1px;
  background: var(--accent);
  margin: 0 auto;
}

/* ═══════════════════════════════════════════════
   RESPONSIVE — Mobile first overrides
   ═══════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }
  .hero-text {
    max-width: 100%;
    order: 2;
  }
  .hero-photo {
    order: 1;
  }
  .hero-subtitle { margin-left: auto; margin-right: auto; }
  .hero-buttons { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-photo-oval {
    width: 280px;
    height: 360px;
  }
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .burger { display: flex; }

  .section { padding: 64px 0; }

  .hero { min-height: auto; padding: 120px 0 60px; }
  .hero-photo-oval {
    width: 220px;
    height: 280px;
  }
  .hero-stats {
    gap: 24px;
    flex-wrap: wrap;
    justify-content: center;
  }
  .hero-stat .number { font-size: 1.8rem; }

  .service-card {
    width: 100%;
  }
  .services-grid {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }

  .team-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .team-card-photo {
    width: 160px;
    height: 210px;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .contact-list {
    grid-template-columns: 1fr;
  }

  .service-full-card {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .service-full-card-photo,
  .service-full-card-no-photo {
    margin: 0 auto;
    width: 140px;
    height: 175px;
  }

  .footer-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer-tagline { margin: 0 auto; }

  .sticky-cta { display: flex; }

  .page-header { padding: 120px 0 40px; }

  .map-container { height: 280px; }

  .cta-section { padding-bottom: 120px; }

  .hero::after { display: none; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 1.8rem; }
  .hero-photo-oval { width: 180px; height: 230px; }
  .section-header h2 { font-size: 1.5rem; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-buttons .btn { width: 100%; }
}
