/* === KaraTai — Resort Blue === */
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;500;600&family=Playfair+Display:ital,wght@0,600;1,600&family=Poppins:wght@400;500;600;700&display=swap');

/* --- CSS Variables --- */
:root {
  --bg: #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;
  --accent-rgb: 42, 143, 189;
  --bg-rgb: 255, 255, 255;
  --heading-font: 'Poppins', sans-serif;
  --body-font: 'Open Sans', sans-serif;
  --accent-serif: 'Playfair Display', serif;
  --heading-weight: 600;
  --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 & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--body-font);
  font-weight: var(--body-weight);
  color: var(--text);
  background: var(--bg);
  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: color var(--transition); }
ul, ol { list-style: none; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--heading-font);
  font-weight: var(--heading-weight);
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.accent-serif { font-family: var(--accent-serif); font-style: italic; }

/* Word-break for Russian long words */
.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(--dark-section);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
.preloader.loaded { opacity: 0; visibility: hidden; pointer-events: none; }
.preloader-logo {
  font-family: var(--heading-font); font-weight: 700; font-size: 2rem;
  color: var(--text-on-dark); margin-bottom: 1.5rem; letter-spacing: 0.05em;
}
.preloader-spinner {
  width: 40px; height: 40px; border: 3px solid rgba(255,255,255,0.15);
  border-top-color: var(--accent); border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* --- Container --- */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* --- Navigation --- */
.nav {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
  background: rgba(255,255,255,0.92); backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: background var(--transition), box-shadow var(--transition);
}
.nav.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.08); }
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 20px; max-width: 1200px; margin: 0 auto;
}
.nav-brand { display: flex; align-items: center; gap: 12px; }
.nav-brand img { height: 52px; width: 52px; border-radius: 50%; object-fit: cover; display: block; }
.nav-brand span {
  font-family: var(--heading-font); font-weight: 700; font-size: 1.25rem;
  color: var(--text);
}
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a {
  font-family: var(--heading-font); font-weight: 500; font-size: 0.9rem;
  color: var(--text-muted); transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px;
  background: var(--accent); transition: width var(--transition);
}
.nav-links a:hover { color: var(--accent); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { color: var(--accent); }
.nav-links a.active::after { width: 100%; }

/* Burger */
.burger {
  display: none; flex-direction: column; gap: 5px; cursor: pointer;
  background: none; border: none; padding: 8px; z-index: 1001;
}
.burger span {
  display: block; width: 24px; height: 2px; background: var(--text);
  transition: transform var(--transition), opacity var(--transition);
}
.burger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.active span:nth-child(2) { opacity: 0; }
.burger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  display: none; position: fixed; inset: 0; z-index: 999;
  background: rgba(255,255,255,0.98); backdrop-filter: blur(20px);
  flex-direction: column; align-items: center; justify-content: center; gap: 28px;
}
.mobile-menu.active { display: flex; }
.mobile-menu a {
  font-family: var(--heading-font); font-weight: 600; font-size: 1.5rem;
  color: var(--text);
}
.mobile-menu a:hover { color: var(--accent); }

/* --- Hero Section --- */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  background: linear-gradient(135deg, var(--dark-section) 0%, #0f1c2a 40%, #142635 70%, var(--dark-section) 100%);
  overflow: hidden; padding-top: 80px;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 600px 400px at 20% 80%, rgba(var(--accent-rgb), 0.12) 0%, transparent 70%),
    radial-gradient(ellipse 500px 500px at 80% 20%, rgba(var(--accent-rgb), 0.08) 0%, transparent 60%);
  pointer-events: none;
}
.hero-inner {
  position: relative; z-index: 2; max-width: 1200px; margin: 0 auto;
  padding: 60px 20px; width: 100%;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
.hero-content { position: relative; z-index: 3; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px; padding: 8px 16px;
  background: rgba(var(--accent-rgb), 0.15); border: 1px solid rgba(var(--accent-rgb), 0.3);
  border-radius: 30px; font-size: 0.85rem; color: var(--accent);
  font-family: var(--heading-font); font-weight: 500; margin-bottom: 24px;
}
.hero-badge::before {
  content: ''; width: 8px; height: 8px; background: var(--accent);
  border-radius: 50%; animation: pulse-dot 2s ease infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.5); }
}
.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem); color: var(--text-on-dark);
  margin-bottom: 20px; line-height: 1.1;
}
.hero h1 em { font-family: var(--accent-serif); font-style: italic; color: var(--accent); }
.hero-subtitle {
  font-size: 1.1rem; color: var(--text-muted-on-dark); margin-bottom: 32px;
  max-width: 500px; line-height: 1.7;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 16px; }
.hero-stats {
  display: flex; gap: 40px; margin-top: 48px; padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.hero-stat { text-align: left; }
.hero-stat .number {
  font-family: var(--heading-font); font-weight: 700; font-size: 2rem;
  color: var(--accent); display: block;
}
.hero-stat .label { font-size: 0.85rem; color: var(--text-muted-on-dark); }

/* Hero photo collage */
.hero-photos { position: relative; height: 480px; }
.hero-decor-circle {
  position: absolute; border-radius: 50%; object-fit: cover;
  box-shadow: 0 8px 40px rgba(0,0,0,0.3);
}
.hero-decor-circle:nth-child(1) {
  width: 280px; height: 280px; top: 10%; right: 5%;
  border: 4px solid rgba(255,255,255,0.9);
}
.hero-decor-circle:nth-child(2) {
  width: 180px; height: 180px; bottom: 15%; right: 45%;
  border: 4px solid var(--accent);
}
.hero-decor-circle:nth-child(3) {
  width: 150px; height: 150px; top: 5%; left: 5%;
  border: 3px solid rgba(255,255,255,0.6);
}
.hero-decor-circle:nth-child(4) {
  width: 120px; height: 120px; bottom: 10%; right: 10%;
  border: 3px solid var(--accent);
}

/* Booking panel */
.hero-booking {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 5;
  background: rgba(255,255,255,0.06); backdrop-filter: blur(15px);
  border-top: 1px solid rgba(255,255,255,0.1);
}
.hero-booking-inner {
  max-width: 1200px; margin: 0 auto; padding: 20px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  flex-wrap: wrap;
}
.booking-item { display: flex; align-items: center; gap: 12px; }
.booking-icon {
  width: 44px; height: 44px; border-radius: 50%; background: rgba(var(--accent-rgb), 0.15);
  display: flex; align-items: center; justify-content: center; color: var(--accent);
  flex-shrink: 0;
}
.booking-text .label { font-size: 0.75rem; color: var(--text-muted-on-dark); text-transform: uppercase; letter-spacing: 0.05em; }
.booking-text .value { font-family: var(--heading-font); font-weight: 600; font-size: 0.95rem; color: var(--text-on-dark); }

/* --- Sections --- */
.section { padding: 100px 0; }
.section.dark {
  background: var(--dark-section);
  color: var(--text-on-dark);
}
.section.surface { background: var(--surface); }
.section-header { text-align: center; margin-bottom: 60px; }
.section-header h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem); margin-bottom: 16px;
  overflow-wrap: break-word; word-break: break-word;
}
.section-header h2 em { font-family: var(--accent-serif); font-style: italic; color: var(--accent); }
.dark .section-header h2 em { color: var(--accent); }
.section-header p {
  font-size: 1.05rem; color: var(--text-muted); max-width: 600px; margin: 0 auto;
}
.dark .section-header p { color: var(--text-muted-on-dark); }

/* --- Buttons --- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 32px; border-radius: var(--radius); font-family: var(--heading-font);
  font-weight: 600; font-size: 0.95rem; cursor: pointer; border: none;
  transition: all var(--transition); min-height: 48px; text-align: center;
}
.btn-primary {
  background: var(--accent); color: white;
  box-shadow: 0 4px 20px rgba(var(--accent-rgb), 0.3);
}
.btn-primary:hover {
  background: var(--accent-hover); transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(var(--accent-rgb), 0.4);
}
.btn-outline {
  background: transparent; color: var(--text-on-dark);
  border: 2px solid rgba(255,255,255,0.3);
}
.btn-outline:hover {
  border-color: var(--accent); color: var(--accent); transform: translateY(-2px);
}
.btn-outline-dark {
  background: transparent; color: var(--text);
  border: 2px solid var(--border);
}
.btn-outline-dark:hover {
  border-color: var(--accent); color: var(--accent); transform: translateY(-2px);
}

/* --- Services Grid --- */
.services-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px;
}
.service-card {
  background: var(--bg); border-radius: var(--radius-sm);
  box-shadow: 0 4px 20px rgba(0,0,0,0.08); transition: all var(--transition);
  overflow-wrap: break-word; word-break: break-word;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.14);
}
.service-card-img {
  position: relative; aspect-ratio: 16/10; overflow: hidden;
  border-radius: var(--radius-sm) var(--radius-sm) 0 0;
}
.service-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform var(--transition);
}
.service-card:hover .service-card-img img { transform: scale(1.05); }
.service-card-number {
  position: absolute; top: 16px; left: 16px;
  width: 40px; height: 40px; border-radius: 50%; background: var(--accent);
  color: white; font-family: var(--heading-font); font-weight: 700; font-size: 0.85rem;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 12px rgba(var(--accent-rgb), 0.4);
}
.service-card-price {
  position: absolute; bottom: 12px; right: 12px;
  background: rgba(0,0,0,0.7); backdrop-filter: blur(8px);
  padding: 6px 14px; border-radius: 20px;
  font-family: var(--heading-font); font-weight: 600; font-size: 0.85rem;
  color: white;
}
.service-card-body { padding: 24px; }
.service-card-body h3 {
  font-size: 1.15rem; margin-bottom: 8px; line-height: 1.3;
  overflow-wrap: break-word; word-break: break-word;
}
.service-card-body p {
  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;
  color: var(--accent); font-family: var(--heading-font); font-weight: 600;
  font-size: 0.9rem; transition: gap var(--transition);
}
.service-card-link:hover { gap: 12px; }
.service-card-link svg { width: 16px; height: 16px; }

/* --- About Section / Collage --- */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-collage {
  position: relative; height: 420px;
}
.about-collage-circle {
  position: absolute; border-radius: 50%; object-fit: cover;
  box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}
.about-collage-circle:nth-child(1) {
  width: 280px; height: 280px; top: 0; left: 10%;
  border: 4px solid rgba(255,255,255,0.9);
}
.about-collage-circle:nth-child(2) {
  width: 220px; height: 220px; bottom: 0; right: 5%;
  border: 4px solid var(--accent);
}
.about-collage-circle:nth-child(3) {
  width: 180px; height: 180px; top: 50%; left: 55%;
  transform: translateY(-50%);
  border: 3px solid rgba(255,255,255,0.7);
}
.about-content h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem); margin-bottom: 20px;
}
.about-content h2 em { font-family: var(--accent-serif); font-style: italic; color: var(--accent); }
.about-content p {
  font-size: 1rem; color: var(--text-muted); line-height: 1.8; margin-bottom: 16px;
}
.about-features {
  display: flex; flex-direction: column; gap: 16px; margin-top: 24px;
}
.about-feature {
  display: flex; align-items: flex-start; gap: 12px;
}
.about-feature-icon {
  width: 36px; height: 36px; border-radius: 50%; background: var(--accent-light);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent); flex-shrink: 0; font-size: 1rem;
}
.about-feature-text { font-size: 0.95rem; color: var(--text); line-height: 1.5; }

/* --- Team Grid --- */
.team-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px;
  justify-items: center;
}
.team-card {
  text-align: center; max-width: 300px;
  overflow-wrap: break-word; word-break: break-word;
}
.team-card-photo {
  width: 180px; height: 180px; border-radius: 50%; margin: 0 auto 20px;
  border: 3px solid var(--accent-light); object-fit: cover;
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
  transition: transform var(--transition);
}
.team-card:hover .team-card-photo { transform: scale(1.05); }
.team-card h3 {
  font-size: 1.15rem; margin-bottom: 6px;
  overflow-wrap: break-word; word-break: break-word;
}
.team-card .role { color: var(--accent); font-weight: 600; font-size: 0.9rem; margin-bottom: 8px; }
.team-card p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.6; }

/* --- Gallery Grid --- */
.gallery-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.gallery-item {
  position: relative; border-radius: var(--radius-sm); overflow: hidden;
  aspect-ratio: 1; cursor: pointer;
}
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform var(--transition);
}
.gallery-item::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(var(--accent-rgb), 0); transition: background var(--transition);
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item:hover::after { background: rgba(var(--accent-rgb), 0.3); }
.gallery-item-icon {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%) scale(0);
  z-index: 2; width: 48px; height: 48px; border-radius: 50%;
  background: rgba(255,255,255,0.9); display: flex; align-items: center; justify-content: center;
  transition: transform var(--transition); color: var(--accent);
}
.gallery-item:hover .gallery-item-icon { transform: translate(-50%,-50%) scale(1); }

/* --- Testimonials --- */
.testimonials-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px;
}
.testimonial-card {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius); padding: 32px; position: relative;
}
.testimonial-card::before {
  content: '\201C'; position: absolute; top: 16px; left: 24px;
  font-family: var(--accent-serif); font-size: 4rem; color: var(--accent);
  line-height: 1; opacity: 0.4;
}
.testimonial-card p {
  font-size: 0.95rem; line-height: 1.7; color: var(--text-muted-on-dark);
  position: relative; z-index: 1; padding-top: 24px;
}

/* --- Counters Section --- */
.counters-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; text-align: center;
}
.counter-item .number {
  font-family: var(--heading-font); font-weight: 700; font-size: 2.8rem;
  color: var(--accent); display: block; margin-bottom: 8px;
}
.counter-item .label { font-size: 0.9rem; color: var(--text-muted-on-dark); }

/* --- CTA Section --- */
.cta-section {
  padding: 80px 0; text-align: center;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%);
  color: white; position: relative; overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle 400px at 30% 50%, rgba(255,255,255,0.1) 0%, transparent 70%);
}
.cta-section h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem); margin-bottom: 16px; position: relative;
}
.cta-section p {
  font-size: 1.05rem; opacity: 0.9; margin-bottom: 32px; max-width: 500px;
  margin-left: auto; margin-right: auto; position: relative;
}
.cta-section .btn {
  background: white; color: var(--accent); font-weight: 700; position: relative;
}
.cta-section .btn:hover { background: var(--dark-section); color: white; transform: translateY(-2px); }

/* --- Contact List --- */
.contact-list { display: flex; flex-direction: column; gap: 20px; }
.contact-item {
  display: flex; align-items: center; gap: 16px;
}
.contact-icon {
  width: 48px; height: 48px; border-radius: 50%; background: var(--accent-light);
  display: flex; align-items: center; justify-content: center; color: var(--accent);
  flex-shrink: 0;
}
.contact-info .label { font-size: 0.8rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.05em; }
.contact-info .value { font-family: var(--heading-font); font-weight: 600; font-size: 1rem; }
.contact-info a { color: var(--accent); }
.contact-info a:hover { color: var(--accent-hover); }

/* Map */
.map-container {
  border-radius: var(--radius); overflow: hidden; margin-top: 40px;
  box-shadow: var(--shadow); height: 350px;
}
.map-container iframe { width: 100%; height: 100%; border: 0; }

/* --- Footer --- */
.footer {
  background: var(--dark-section); color: var(--text-on-dark); padding: 60px 0 30px;
}
.footer-inner {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 40px;
  margin-bottom: 40px;
}
.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer-brand img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; }
.footer-brand span { font-family: var(--heading-font); font-weight: 700; font-size: 1.2rem; }
.footer p { font-size: 0.9rem; color: var(--text-muted-on-dark); line-height: 1.7; }
.footer h4 { font-size: 1rem; margin-bottom: 16px; color: var(--text-on-dark); }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 0.9rem; color: var(--text-muted-on-dark); transition: color var(--transition); }
.footer-links a:hover { color: var(--accent); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1); padding-top: 24px;
  text-align: center; font-size: 0.85rem; color: var(--text-muted-on-dark);
}

/* --- Floating WhatsApp --- */
.floating-wa {
  position: fixed; bottom: 28px; right: 28px; z-index: 900;
  width: 60px; height: 60px; border-radius: 50%;
  background: #25D366; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: transform var(--transition), box-shadow var(--transition);
}
.floating-wa:hover { transform: scale(1.1); box-shadow: 0 8px 30px rgba(37,211,102,0.5); }
.floating-wa svg { width: 28px; height: 28px; fill: white; }

/* --- Services Page Full --- */
.page-header {
  padding: 140px 0 60px; background: var(--surface); text-align: center;
}
.page-header h1 {
  font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 12px;
}
.page-header h1 em { font-family: var(--accent-serif); font-style: italic; color: var(--accent); }
.page-header p { font-size: 1.05rem; color: var(--text-muted); max-width: 500px; margin: 0 auto; }

.services-full-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px;
}
.service-full-card {
  background: var(--bg); border-radius: var(--radius); box-shadow: var(--shadow);
  overflow: hidden; transition: all var(--transition);
}
.service-full-card:hover {
  transform: translateY(-6px); box-shadow: var(--shadow-lg);
}
.service-full-img {
  aspect-ratio: 16/10; overflow: hidden;
}
.service-full-img img {
  width: 100%; height: 100%; object-fit: cover; transition: transform var(--transition);
}
.service-full-card:hover .service-full-img img { transform: scale(1.05); }
.service-full-body { padding: 28px; }
.service-full-body h3 {
  font-size: 1.2rem; margin-bottom: 10px;
  overflow-wrap: break-word; word-break: break-word;
}
.service-full-body p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 16px; }
.service-full-meta {
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px;
}
.service-full-price {
  font-family: var(--heading-font); font-weight: 700; font-size: 1.1rem; color: var(--accent);
}
.service-full-badge {
  padding: 4px 12px; border-radius: 20px; background: rgba(var(--accent-rgb), 0.1);
  color: var(--accent); font-size: 0.8rem; font-weight: 600;
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .hero-subtitle { margin: 0 auto 32px; }
  .hero-cta { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-photos { height: 320px; margin: 0 auto; max-width: 500px; }
  .hero-decor-circle:nth-child(1) { width: 200px; height: 200px; }
  .hero-decor-circle:nth-child(2) { width: 140px; height: 140px; }
  .hero-decor-circle:nth-child(3) { width: 120px; height: 120px; }
  .hero-decor-circle:nth-child(4) { width: 100px; height: 100px; }
  .about-grid { grid-template-columns: 1fr; }
  .about-collage { height: 340px; margin-bottom: 40px; }
  .footer-inner { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .burger { display: flex; }

  .hero { min-height: auto; padding: 100px 0 0; }
  .hero-inner { padding: 40px 20px; }
  .hero-photos { height: 260px; }
  .hero-decor-circle:nth-child(1) { width: 160px; height: 160px; }
  .hero-decor-circle:nth-child(2) { width: 120px; height: 120px; bottom: 5%; }
  .hero-decor-circle:nth-child(3) { width: 100px; height: 100px; }
  .hero-decor-circle:nth-child(4) { width: 80px; height: 80px; }
  .hero-booking-inner { flex-direction: column; align-items: flex-start; gap: 16px; }
  .hero-stats { flex-direction: column; gap: 20px; align-items: center; }

  .section { padding: 60px 0; }
  .section-header { margin-bottom: 40px; }

  .services-grid,
  .services-full-grid { grid-template-columns: 1fr; }

  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }

  .team-grid { grid-template-columns: 1fr; gap: 32px; }

  .testimonials-grid { grid-template-columns: 1fr; }

  .counters-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }

  .about-collage { height: 280px; }
  .about-collage-circle:nth-child(1) { width: 200px; height: 200px; }
  .about-collage-circle:nth-child(2) { width: 160px; height: 160px; }
  .about-collage-circle:nth-child(3) { width: 130px; height: 130px; }

  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 480px) {
  .hero-photos { height: 220px; }
  .hero-decor-circle:nth-child(1) { width: 140px; height: 140px; }
  .hero-decor-circle:nth-child(2) { width: 100px; height: 100px; }
  .hero-decor-circle:nth-child(3) { display: none; }
  .hero-decor-circle:nth-child(4) { display: none; }
  .hero h1 { font-size: 1.8rem; }
  .counters-grid { grid-template-columns: 1fr 1fr; }
  .about-collage-circle:nth-child(3) { display: none; }
}

/* --- Hover effects on cards (3+) --- */
.service-card:hover, .service-full-card:hover { cursor: pointer; }
.gallery-item:hover { cursor: pointer; }
.team-card:hover { cursor: pointer; }

/* --- Pseudo-element decorations --- */
.section-header h2::after {
  content: ''; display: block; width: 60px; height: 3px;
  background: var(--accent); margin: 16px auto 0; border-radius: 2px;
}
.dark .section-header h2::after { background: var(--accent); }

.about-content h2::after {
  content: ''; display: block; width: 50px; height: 3px;
  background: var(--accent); margin: 16px 0 0; border-radius: 2px;
}
