/* ===================================
   Dr.Zubova — Resort Blue Style
   =================================== */

/* --- CSS Variables --- */
:root {
  --background: #ffffff;
  --surface: #f5f7fa;
  --dark-section: #1a2a3a;
  --accent: #2a8fbd;
  --accent-hover: #238aab;
  --text: #1a2a3a;
  --text-muted: #6b7c8a;
  --text-on-dark: #ffffff;
  --text-muted-on-dark: #9aacba;
  --border: #e2e8f0;
  --accent-light: #e8f4f8;

  /* effects.js required */
  --accent-rgb: 42, 143, 189;
  --bg-rgb: 255, 255, 255;
  --transition: 0.3s ease;

  /* Typography */
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Open Sans', sans-serif;
  --font-accent: 'Playfair Display', serif;
}

/* --- Reset & Base --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--background);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul { list-style: none; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.2;
  overflow-wrap: break-word;
  word-break: break-word;
}

/* Word-break safety for Russian long words */
.service-card, .team-card, .hero h1, .section-header h2 {
  overflow-wrap: break-word;
  word-break: break-word;
}

/* --- Container --- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ====================================
   TOP BAR
   ==================================== */
.top-bar {
  background: var(--dark-section);
  color: var(--text-on-dark);
  font-size: 0.85rem;
  padding: 8px 0;
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.top-bar a {
  color: var(--text-muted-on-dark);
  transition: var(--transition);
}

.top-bar a:hover {
  color: var(--text-on-dark);
}

.top-bar__left {
  display: flex;
  align-items: center;
  gap: 20px;
}

.top-bar__right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.top-bar__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  font-size: 0.75rem;
  transition: var(--transition);
}

.top-bar__social a:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

/* ====================================
   HEADER / NAV
   ==================================== */
.header {
  background: var(--background);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: box-shadow 0.3s ease;
}

.header.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  padding-bottom: 12px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo img {
  height: 52px;
  width: 52px;
  border-radius: 50%;
  object-fit: cover;
}

.logo__text {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.25rem;
  color: var(--text);
  line-height: 1.2;
}

.logo__text small {
  display: block;
  font-size: 0.7rem;
  color: var(--text-muted);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav__links a {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  position: relative;
  padding: 4px 0;
}

.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.3s ease;
}

.nav__links a:hover::after,
.nav__links a.active::after {
  width: 100%;
}

.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* Burger menu */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.burger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--text);
  transition: var(--transition);
  border-radius: 2px;
}

.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);
}

/* ====================================
   BUTTONS
   ==================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 6px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  min-height: 44px;
  min-width: 44px;
  text-align: center;
}

.btn--primary {
  background: var(--accent);
  color: #fff;
}

.btn--primary:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(42, 143, 189, 0.3);
}

.btn--white {
  background: #fff;
  color: var(--dark-section);
}

.btn--white:hover {
  background: var(--accent-light);
  transform: translateY(-2px);
}

.btn--outline {
  background: transparent;
  color: var(--accent);
  border: 2px solid var(--accent);
}

.btn--outline:hover {
  background: var(--accent);
  color: #fff;
  transform: translateY(-2px);
}

.btn--dark-outline {
  background: transparent;
  color: var(--text-on-dark);
  border: 2px solid rgba(255,255,255,0.3);
}

.btn--dark-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.6);
}

/* ====================================
   SECTION GENERIC
   ==================================== */
.section {
  padding: 80px 0;
}

.section--dark {
  background: var(--dark-section);
  color: var(--text-on-dark);
}

.section--surface {
  background: var(--surface);
}

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-header__label {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 12px;
}

.section--dark .section-header__label {
  color: var(--accent);
}

.section-header h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  margin-bottom: 16px;
}

.section-header h2 .accent-serif {
  font-family: var(--font-accent);
  font-style: italic;
  color: var(--accent);
}

.section--dark .section-header h2 .accent-serif {
  color: var(--accent);
}

.section-header p {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

.section--dark .section-header p {
  color: var(--text-muted-on-dark);
}

/* ====================================
   HERO
   ==================================== */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #1a2a3a 0%, #0f1f2e 40%, #1a3a50 70%, #1a2a3a 100%);
  overflow: visible;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(42, 143, 189, 0.15), transparent 60%),
    radial-gradient(ellipse at 80% 30%, rgba(42, 143, 189, 0.1), transparent 50%);
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding-top: 60px;
  padding-bottom: 60px;
}

.hero__content {
  color: var(--text-on-dark);
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(42, 143, 189, 0.15);
  border: 1px solid rgba(42, 143, 189, 0.3);
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero__title {
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  margin-bottom: 20px;
  line-height: 1.15;
}

.hero__title .accent-serif {
  font-family: var(--font-accent);
  font-style: italic;
  color: var(--accent);
}

.hero__subtitle {
  font-size: 1.1rem;
  color: var(--text-muted-on-dark);
  margin-bottom: 32px;
  line-height: 1.7;
  max-width: 500px;
}

.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero__stats {
  display: flex;
  gap: 32px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.hero__stat {
  text-align: center;
}

.hero__stat-number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
  display: block;
}

.hero__stat-label {
  font-size: 0.8rem;
  color: var(--text-muted-on-dark);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Hero photo collage - circular cutouts */
.hero__visual {
  position: relative;
  height: 500px;
}

.hero__circle {
  position: absolute;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0,0,0,0.3);
}

.hero__circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__circle--1 {
  width: 260px;
  height: 260px;
  top: 20px;
  right: 40px;
  border: 4px solid #fff;
  z-index: 3;
}

.hero__circle--2 {
  width: 200px;
  height: 200px;
  top: 180px;
  right: 220px;
  border: 4px solid var(--accent);
  z-index: 2;
}

.hero__circle--3 {
  width: 160px;
  height: 160px;
  bottom: 40px;
  right: 80px;
  border: 4px solid #fff;
  z-index: 4;
}

.hero__circle--4 {
  width: 120px;
  height: 120px;
  top: 0;
  right: 280px;
  border: 3px solid var(--accent);
  z-index: 1;
  opacity: 0.9;
}

/* ====================================
   SERVICE CARDS (2x2, photo-cards, numbered)
   ==================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.service-card {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: var(--transition);
  position: relative;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.14);
}

.service-card__image {
  position: relative;
  aspect-ratio: 16/10;
  border-radius: 8px 8px 0 0;
  overflow: hidden;
}

.service-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.service-card:hover .service-card__image img {
  transform: scale(1.03);
}

.service-card__number {
  position: absolute;
  top: 16px;
  left: 16px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.service-card__body {
  padding: 24px;
}

.service-card__title {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--text);
}

.service-card__desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 16px;
}

.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent);
}

.service-card__link:hover {
  gap: 10px;
  color: var(--accent-hover);
}

.service-card__link svg {
  width: 16px;
  height: 16px;
  transition: var(--transition);
}

/* ====================================
   ABOUT - Circular Collage
   ==================================== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about__content h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  margin-bottom: 20px;
}

.about__content h2 .accent-serif {
  font-family: var(--font-accent);
  font-style: italic;
  color: var(--accent);
}

.about__content p {
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.7;
}

.about__usp-list {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.about__usp-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.about__usp-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 0.75rem;
  margin-top: 2px;
}

.about__usp-text {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.5;
}

/* Circular photo collage */
.about__collage {
  position: relative;
  height: 400px;
}

.about__collage-circle {
  position: absolute;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 6px 24px rgba(0,0,0,0.12);
}

.about__collage-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about__collage-circle--1 {
  width: 280px;
  height: 280px;
  top: 10px;
  left: 30px;
  border: 4px solid #fff;
  z-index: 2;
}

.about__collage-circle--2 {
  width: 220px;
  height: 220px;
  bottom: 10px;
  right: 10px;
  border: 4px solid var(--accent);
  z-index: 3;
}

.about__collage-circle--3 {
  width: 180px;
  height: 180px;
  top: 20px;
  right: 40px;
  border: 3px solid #fff;
  z-index: 1;
  opacity: 0.9;
}

/* ====================================
   TEAM - 3 col, circular photos
   ==================================== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.team-card {
  text-align: center;
  overflow-wrap: break-word;
  word-break: break-word;
}

.team-card__photo {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 20px;
  border: 3px solid var(--accent-light);
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.team-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-card__photo--placeholder {
  background: var(--accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: var(--accent);
}

.team-card__name {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 6px;
  color: var(--text);
}

.section--dark .team-card__name {
  color: var(--text-on-dark);
}

.team-card__role {
  font-size: 0.85rem;
  color: var(--accent);
  font-weight: 500;
}

.team-card__desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 8px;
}

.section--dark .team-card__desc {
  color: var(--text-muted-on-dark);
}

/* ====================================
   GALLERY - 3col rounded grid
   ==================================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.gallery-item {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(42, 143, 189, 0.4);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-item:hover img {
  transform: scale(1.03);
}

.gallery-item:hover::after {
  opacity: 1;
}

.gallery-item__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-item__overlay {
  opacity: 1;
}

.gallery-item__overlay svg {
  width: 32px;
  height: 32px;
  color: #fff;
}

/* ====================================
   REVIEWS
   ==================================== */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.review-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 28px;
}

.review-card__stars {
  color: #f5b731;
  font-size: 0.9rem;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.review-card__text {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-muted-on-dark);
  font-style: italic;
}

/* ====================================
   CTA Section
   ==================================== */
.cta-section {
  padding: 80px 0;
  text-align: center;
}

.cta-section h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  margin-bottom: 16px;
}

.cta-section h2 .accent-serif {
  font-family: var(--font-accent);
  font-style: italic;
  color: var(--accent);
}

.section--dark .cta-section h2 .accent-serif {
  color: var(--accent);
}

.cta-section p {
  font-size: 1.05rem;
  color: var(--text-muted-on-dark);
  margin-bottom: 32px;
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
}

.cta-section .btn-group {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ====================================
   COUNTERS / STATS
   ==================================== */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.stats-bar__item {
  text-align: center;
  padding: 32px 20px;
  position: relative;
}

.stats-bar__item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: rgba(255,255,255,0.15);
}

.stats-bar__number {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--accent);
  display: block;
}

.stats-bar__label {
  font-size: 0.8rem;
  color: var(--text-muted-on-dark);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 4px;
}

/* ====================================
   CONTACT INFO
   ==================================== */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.contact-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 28px;
  text-align: center;
  transition: var(--transition);
}

.contact-card:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-2px);
}

.contact-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(42, 143, 189, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: var(--accent);
  font-size: 1.2rem;
}

.contact-card__title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 8px;
  color: var(--text-on-dark);
}

.contact-card__text {
  font-size: 0.9rem;
  color: var(--text-muted-on-dark);
  line-height: 1.6;
}

.contact-card__text a {
  color: var(--accent);
}

.contact-card__text a:hover {
  color: var(--accent-hover);
}

/* ====================================
   FOOTER
   ==================================== */
.footer {
  background: #111d29;
  color: var(--text-muted-on-dark);
  padding: 60px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer__brand p {
  font-size: 0.9rem;
  line-height: 1.6;
  margin-top: 12px;
}

.footer h4 {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-on-dark);
  margin-bottom: 16px;
}

.footer ul li {
  margin-bottom: 10px;
}

.footer ul li a {
  font-size: 0.85rem;
  color: var(--text-muted-on-dark);
}

.footer ul li a:hover {
  color: var(--accent);
}

.footer__social {
  display: flex;
  gap: 12px;
  margin-top: 12px;
}

.footer__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--text-muted-on-dark);
  font-size: 0.85rem;
  transition: var(--transition);
}

.footer__social a:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  text-align: center;
  font-size: 0.8rem;
}

/* ====================================
   FLOATING WHATSAPP
   ==================================== */
.floating-whatsapp {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
  transition: var(--transition);
  color: #fff;
}

.floating-whatsapp:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
}

.floating-whatsapp svg {
  width: 28px;
  height: 28px;
}

/* ====================================
   PAGE HERO (inner pages)
   ==================================== */
.page-hero {
  background: linear-gradient(135deg, #1a2a3a 0%, #0f1f2e 50%, #1a3a50 100%);
  color: var(--text-on-dark);
  padding: 100px 0 60px;
  text-align: center;
  position: relative;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(42, 143, 189, 0.1), transparent 70%);
  pointer-events: none;
}

.page-hero h1 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 12px;
  position: relative;
}

.page-hero h1 .accent-serif {
  font-family: var(--font-accent);
  font-style: italic;
  color: var(--accent);
}

.page-hero p {
  font-size: 1.05rem;
  color: var(--text-muted-on-dark);
  max-width: 550px;
  margin: 0 auto;
  position: relative;
}

/* ====================================
   SERVICES PAGE - full cards
   ==================================== */
.service-full {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  padding: 48px 0;
  border-bottom: 1px solid var(--border);
}

.service-full:last-child {
  border-bottom: none;
}

.service-full:nth-child(even) {
  direction: rtl;
}

.service-full:nth-child(even) > * {
  direction: ltr;
}

.service-full__image {
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 16/10;
}

.service-full__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-full__content h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
  color: var(--text);
}

.service-full__content p {
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}

/* ====================================
   MOBILE RESPONSIVE
   ==================================== */
@media (max-width: 1024px) {
  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero__subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .hero__actions {
    justify-content: center;
  }

  .hero__stats {
    justify-content: center;
  }

  .hero__visual {
    height: 350px;
    margin: 0 auto;
    max-width: 400px;
  }

  .hero__circle--1 { width: 200px; height: 200px; top: 10px; right: 20px; }
  .hero__circle--2 { width: 160px; height: 160px; top: 140px; right: 170px; }
  .hero__circle--3 { width: 130px; height: 130px; bottom: 20px; right: 50px; }
  .hero__circle--4 { width: 100px; height: 100px; top: 0; right: 200px; }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .about__collage {
    height: 300px;
    order: -1;
    margin: 0 auto;
    max-width: 400px;
    width: 100%;
  }

  .service-full {
    grid-template-columns: 1fr;
  }

  .service-full:nth-child(even) {
    direction: ltr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .top-bar { display: none; }

  .nav__links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255,255,255,0.98);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 24px;
    z-index: 1000;
  }

  .nav__links.open {
    display: flex;
  }

  .nav__links a {
    font-size: 1.2rem;
  }

  .burger {
    display: flex;
  }

  .hero {
    min-height: auto;
    padding: 40px 0;
  }

  .hero .container {
    gap: 30px;
  }

  .hero__visual {
    height: 250px;
    max-width: 300px;
  }

  .hero__circle--1 { width: 150px; height: 150px; top: 10px; right: 10px; }
  .hero__circle--2 { width: 120px; height: 120px; top: 100px; right: 120px; }
  .hero__circle--3 { width: 100px; height: 100px; bottom: 10px; right: 40px; }
  .hero__circle--4 { width: 80px; height: 80px; top: 0; right: 160px; }

  .hero__stats {
    gap: 20px;
    flex-wrap: wrap;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .team-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .team-card__photo {
    width: 140px;
    height: 140px;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .stats-bar {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-bar__item:nth-child(2)::after {
    display: none;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .section {
    padding: 60px 0;
  }

  .about__collage-circle--1 { width: 200px; height: 200px; }
  .about__collage-circle--2 { width: 160px; height: 160px; }
  .about__collage-circle--3 { width: 130px; height: 130px; }
}

@media (max-width: 480px) {
  .hero__visual {
    height: 200px;
    max-width: 260px;
  }

  .hero__circle--1 { width: 120px; height: 120px; }
  .hero__circle--2 { width: 100px; height: 100px; top: 80px; right: 100px; }
  .hero__circle--3 { width: 80px; height: 80px; }
  .hero__circle--4 { display: none; }

  .team-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }

  .stats-bar {
    grid-template-columns: 1fr 1fr;
  }
}

/* ====================================
   PSEUDO-ELEMENT DECORATION
   ==================================== */
.section-header::before {
  content: '';
  display: block;
  width: 40px;
  height: 3px;
  background: var(--accent);
  margin: 0 auto 16px;
  border-radius: 2px;
}

.section--dark .section-header::before {
  background: var(--accent);
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform 0.3s ease;
  border-radius: 0 0 8px 8px;
}

.service-card:hover::after {
  transform: scaleX(1);
}

/* ====================================
   MOBILE NAV OVERLAY
   ==================================== */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 999;
}

.nav-overlay.open {
  display: block;
}
