/* ================================================
   BUANA — Баня в Алматы
   Mobile-First CSS
   ================================================ */

/* ---------- RESET & BASE ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --brown-900: #1a0e05;
  --brown-800: #2a1a0a;
  --brown-700: #3d2410;
  --brown-600: #5a3820;
  --brown-500: #7a4f2e;
  --amber:     #D4A96A;
  --amber-light:#e8c98a;
  --cream:     #f5ede0;
  --cream-dark:#ede0cc;
  --white:     #ffffff;
  --text-dark: #1a0e05;
  --text-mid:  #5a3820;
  --text-light:#9a7a5a;

  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans:  'Inter', -apple-system, sans-serif;

  --radius-sm:  8px;
  --radius-md:  16px;
  --radius-lg:  24px;
  --radius-xl:  40px;

  --shadow-sm:  0 2px 8px rgba(26,14,5,.08);
  --shadow-md:  0 8px 24px rgba(26,14,5,.14);
  --shadow-lg:  0 16px 48px rgba(26,14,5,.20);

  --header-h:   64px;
  --transition: 0.3s cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-sans);
  color: var(--text-dark);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img, svg { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; background: none; border: none; font-family: inherit; }

/* ---------- CONTAINER ---------- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ---------- TYPOGRAPHY ---------- */
.section__eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--brown-500);
  margin-bottom: 12px;
}
.section__eyebrow--light { color: var(--amber); }

.section__title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 6vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--brown-900);
}
.section__title--light { color: var(--white); }

.section__header {
  text-align: center;
  margin-bottom: 40px;
}

/* ---------- SECTIONS ---------- */
.section { padding: 64px 0; }
.section--dark { background: var(--brown-800); }
.section--warm { background: var(--cream-dark); }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-xl);
  font-family: var(--font-sans);
  font-size: .9rem;
  font-weight: 600;
  transition: var(--transition);
  white-space: nowrap;
  border: 2px solid transparent;
  cursor: pointer;
}
.btn--lg { padding: 16px 36px; font-size: 1rem; }

.btn--primary {
  background: var(--amber);
  color: var(--brown-900);
  border-color: var(--amber);
}
.btn--primary:hover { background: var(--amber-light); border-color: var(--amber-light); transform: translateY(-2px); box-shadow: var(--shadow-md); }

.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.5);
}
.btn--outline:hover { background: rgba(255,255,255,.1); border-color: var(--white); }

.btn--outline-dark {
  background: transparent;
  color: var(--brown-700);
  border-color: var(--brown-500);
}
.btn--outline-dark:hover { background: var(--brown-700); color: var(--white); border-color: var(--brown-700); }

.btn--outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.6);
}
.btn--outline-light:hover { background: rgba(255,255,255,.12); }

/* ---------- LOGO ---------- */
.logo {
  display: flex;
  align-items: center;
  gap: 8px;
}
.logo__icon { font-size: 1.4rem; }
.logo__text {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: .05em;
  color: var(--brown-900);
}
.logo--light .logo__text { color: var(--white); }

/* ================================================
   HEADER
   ================================================ */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--header-h);
  background: rgba(245,237,224,.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(212,169,106,.2);
  transition: background var(--transition), box-shadow var(--transition);
}
.header.scrolled {
  background: rgba(245,237,224,.98);
  box-shadow: var(--shadow-sm);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 16px;
}

/* Desktop nav — hidden on mobile */
.nav { display: none; }
.header__cta { display: none; }

.burger {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  padding: 0;
}
.burger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--brown-700);
  border-radius: 2px;
  transition: var(--transition);
}
.burger.active span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.burger.active span:nth-child(2) { opacity: 0; }
.burger.active span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

/* Mobile nav overlay */
.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--brown-900);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}
.nav-overlay.open { opacity: 1; pointer-events: all; }

.nav-overlay__close {
  position: absolute;
  top: 20px; right: 20px;
  color: var(--amber);
  font-size: 1.6rem;
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
}
.nav-overlay__list { text-align: center; }
.nav-overlay__link {
  display: block;
  padding: 14px 24px;
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: var(--white);
  transition: color var(--transition);
}
.nav-overlay__link:hover { color: var(--amber); }

.nav-overlay__cta { margin-top: 24px; }

/* ================================================
   HERO
   ================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  background: linear-gradient(
    160deg,
    var(--brown-900) 0%,
    var(--brown-800) 40%,
    #3a2015 100%
  );
  overflow: hidden;
  padding-top: var(--header-h);
}

/* Decorative texture */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(212,169,106,.08) 0%, transparent 70%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Ccircle cx='30' cy='30' r='1' fill='%23D4A96A' opacity='.06'/%3E%3C/svg%3E");
  pointer-events: none;
}

/* Steam animations */
.hero__bg { position: absolute; inset: 0; pointer-events: none; }
.hero__steam {
  position: absolute;
  width: 80px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(212,169,106,.12) 0%, transparent 70%);
  animation: steamRise 6s ease-in-out infinite;
}
.hero__steam--1 { width: 120px; height: 180px; left: 10%; bottom: 20%; animation-delay: 0s; }
.hero__steam--2 { width: 90px;  height: 140px; left: 60%; bottom: 15%; animation-delay: 2s; }
.hero__steam--3 { width: 70px;  height: 110px; left: 85%; bottom: 30%; animation-delay: 4s; }

@keyframes steamRise {
  0%   { transform: translateY(0) scale(1); opacity: .6; }
  50%  { transform: translateY(-60px) scale(1.3); opacity: .3; }
  100% { transform: translateY(-120px) scale(1.6); opacity: 0; }
}

.hero__content {
  position: relative;
  z-index: 1;
  padding: 60px 20px;
}
.hero__tagline {
  display: inline-block;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 16px;
  padding: 6px 16px;
  border: 1px solid rgba(212,169,106,.3);
  border-radius: 100px;
}
.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 9vw, 5rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 20px;
}
.hero__sub {
  font-size: clamp(.95rem, 3vw, 1.15rem);
  color: rgba(255,255,255,.7);
  max-width: 460px;
  margin-bottom: 36px;
  line-height: 1.7;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 40px;
}
.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.badge {
  display: flex;
  flex-direction: column;
  padding: 12px 16px;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(212,169,106,.2);
  backdrop-filter: blur(8px);
}
.badge__val { font-weight: 700; color: var(--white); font-size: .95rem; line-height: 1.2; }
.badge__stars { color: var(--amber); font-size: .85rem; }
.badge__label { font-size: .72rem; color: rgba(255,255,255,.55); margin-top: 2px; }

/* Scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  width: 28px; height: 44px;
  border: 2px solid rgba(212,169,106,.4);
  border-radius: 100px;
  display: flex;
  justify-content: center;
  padding-top: 7px;
}
.hero__scroll span {
  display: block;
  width: 4px; height: 8px;
  background: var(--amber);
  border-radius: 2px;
  animation: scrollDot 1.6s ease-in-out infinite;
}
@keyframes scrollDot {
  0%  { transform: translateY(0); opacity: 1; }
  100%{ transform: translateY(14px); opacity: 0; }
}

/* ================================================
   ABOUT
   ================================================ */
.about__grid {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.about__visual { position: relative; }
.about__img-wrap { position: relative; }
.about__img--main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--brown-700);
}
.about__img-inner {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--brown-800), var(--brown-600));
}
.about__img-inner svg { width: 60%; height: 60%; }

.about__stat-card {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.about__stat-card--1 { bottom: -16px; left: 20px; }
.about__stat-card--2 { top: 20px; right: -12px; }
.stat-num { font-family: var(--font-serif); font-size: 1.4rem; font-weight: 700; color: var(--brown-700); }
.stat-label { font-size: .72rem; color: var(--text-light); font-weight: 500; }

.about__text { padding-top: 16px; }
.about__desc {
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 16px;
  font-size: .95rem;
}
.about__features { margin-top: 24px; display: flex; flex-direction: column; gap: 12px; }
.about__feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: .9rem;
  color: var(--text-mid);
}
.feature-icon { font-size: 1.1rem; flex-shrink: 0; line-height: 1.4; }

/* ================================================
   SERVICES
   ================================================ */
.services__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.service-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(212,169,106,.15);
  border-radius: var(--radius-md);
  padding: 24px;
  transition: var(--transition);
  opacity: 0;
  transform: translateY(20px);
}
.service-card.visible {
  opacity: 1;
  transform: translateY(0);
}
.service-card:hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(212,169,106,.35);
  transform: translateY(-4px);
}
.service-card__icon { width: 52px; height: 52px; margin-bottom: 16px; }
.service-card__title {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
}
.service-card__desc { font-size: .88rem; color: rgba(255,255,255,.6); line-height: 1.7; }

/* ================================================
   PRICING
   ================================================ */
.pricing__note {
  font-size: .88rem;
  color: var(--text-light);
  margin-top: 8px;
}
.pricing__grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 960px;
  margin: 0 auto;
}
.pricing-card {
  position: relative;
  background: var(--white);
  border: 2px solid var(--cream-dark);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}
.pricing-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.pricing-card--featured {
  border-color: var(--amber);
  box-shadow: 0 8px 32px rgba(212,169,106,.2);
}
.pricing-card__badge {
  position: absolute;
  top: 0; right: 0;
  background: var(--amber);
  color: var(--brown-900);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 0 0 0 var(--radius-sm);
}
.pricing-card__head {
  padding: 28px 24px 20px;
  border-bottom: 1px solid var(--cream-dark);
  background: linear-gradient(135deg, var(--cream), var(--cream-dark));
}
.pricing-card--featured .pricing-card__head { background: linear-gradient(135deg, #fff8ee, #fef0d4); }
.pricing-card__name {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--brown-800);
  margin-bottom: 4px;
}
.pricing-card__sub { font-size: .88rem; color: var(--text-light); }
.pricing-card__body { padding: 20px 24px; }
.pricing-card__list { display: flex; flex-direction: column; gap: 10px; }
.pricing-card__list li { font-size: .9rem; color: var(--text-mid); display: flex; gap: 8px; }
.pricing-card__footer { padding: 16px 24px 24px; }
.pricing-card__footer .btn { width: 100%; justify-content: center; }

/* ================================================
   WHY US
   ================================================ */
.whyus__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.whyus__card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 20px 16px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.whyus__card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.whyus__icon { font-size: 1.6rem; margin-bottom: 10px; }
.whyus__title { font-family: var(--font-serif); font-size: 1rem; font-weight: 600; color: var(--brown-800); margin-bottom: 6px; }
.whyus__desc { font-size: .82rem; color: var(--text-light); line-height: 1.6; }

/* ================================================
   GALLERY
   ================================================ */
.gallery__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 32px;
}
.gallery__item { border-radius: var(--radius-md); overflow: hidden; aspect-ratio: 1; }
.gallery__item--large { grid-column: 1 / -1; aspect-ratio: 16/9; }
.gallery__item--wide { grid-column: 1 / -1; aspect-ratio: 2/1; }

.gallery__placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition);
}
.gallery__item:hover .gallery__placeholder { transform: scale(1.04); }
.gallery__placeholder span {
  position: relative; z-index: 1;
  font-family: var(--font-serif);
  font-size: 1rem;
  color: rgba(255,255,255,.85);
  font-weight: 600;
  letter-spacing: .03em;
  text-shadow: 0 2px 8px rgba(0,0,0,.4);
}
.gallery__placeholder--1 { background: linear-gradient(135deg, #3d1a08 0%, #7a3010 50%, #c06030 100%); }
.gallery__placeholder--2 { background: linear-gradient(135deg, #0d2a3d 0%, #1a5070 50%, #2a88a8 100%); }
.gallery__placeholder--3 { background: linear-gradient(135deg, #2a1a0a 0%, #5a3820 50%, #8a5830 100%); }
.gallery__placeholder--4 { background: linear-gradient(135deg, #1a2a0a 0%, #3a5820 50%, #6a9840 100%); }
.gallery__placeholder--5 { background: linear-gradient(135deg, #3d2010 0%, #7a4828 50%, #c07840 100%); }

.gallery__insta {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.gallery__insta p { color: rgba(255,255,255,.6); font-size: .9rem; }
.insta-icon { width: 18px; height: 18px; }

/* ================================================
   REVIEWS
   ================================================ */
.reviews__summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 16px;
  flex-wrap: wrap;
}
.reviews__score {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--brown-900);
  line-height: 1;
}
.reviews__stars { color: var(--amber); font-size: 1.3rem; }
.reviews__count { font-size: .85rem; color: var(--text-light); }

.reviews__track-wrap {
  overflow: hidden;
  margin: 32px 0 20px;
}
.reviews__track {
  display: flex;
  gap: 16px;
  transition: transform var(--transition);
  will-change: transform;
}
.review-card {
  min-width: calc(100% - 0px);
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(212,169,106,.15);
}
.review-card__head { display: flex; gap: 12px; align-items: center; margin-bottom: 14px; }
.review-card__avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brown-600), var(--amber));
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  flex-shrink: 0;
}
.review-card__name { font-weight: 600; font-size: .95rem; color: var(--brown-800); }
.review-card__stars { color: var(--amber); font-size: .85rem; }
.review-card__text { font-size: .88rem; color: var(--text-mid); line-height: 1.7; font-style: italic; }

.reviews__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.reviews__btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 2px solid var(--cream-dark);
  background: var(--white);
  font-size: 1.4rem;
  color: var(--brown-700);
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
  line-height: 1;
}
.reviews__btn:hover { background: var(--brown-700); color: var(--white); border-color: var(--brown-700); }

.reviews__dots { display: flex; gap: 6px; }
.reviews__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--cream-dark);
  transition: var(--transition);
  cursor: pointer;
}
.reviews__dot.active { background: var(--brown-600); width: 20px; border-radius: 4px; }

/* ================================================
   BOOKING CTA
   ================================================ */
.cta__inner {
  position: relative;
  text-align: center;
  padding: 60px 20px;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, #2a1a0a, #3d2415);
  border: 1px solid rgba(212,169,106,.2);
  overflow: hidden;
}
.cta__steam {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(212,169,106,.08) 0%, transparent 70%);
  pointer-events: none;
  animation: steamRise 8s ease-in-out infinite;
}
.cta__steam--1 { width: 200px; height: 300px; left: 5%; bottom: 0; animation-delay: 0s; }
.cta__steam--2 { width: 160px; height: 240px; right: 10%; bottom: 0; animation-delay: 3s; }

.cta__title {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 5vw, 2.6rem);
  font-weight: 700;
  color: var(--white);
  margin: 12px 0 16px;
  position: relative; z-index: 1;
}
.cta__sub {
  color: rgba(255,255,255,.6);
  font-size: .95rem;
  margin-bottom: 32px;
  position: relative; z-index: 1;
}
.cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  position: relative; z-index: 1;
}
.wa-icon { width: 20px; height: 20px; flex-shrink: 0; }

/* ================================================
   CONTACTS
   ================================================ */
.contacts__grid {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.contacts__info { display: flex; flex-direction: column; gap: 24px; }
.contact-item { display: flex; gap: 16px; align-items: flex-start; }
.contact-item__icon { font-size: 1.4rem; line-height: 1; flex-shrink: 0; margin-top: 2px; }
.contact-item__label { font-size: .75rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--text-light); margin-bottom: 4px; }
.contact-item__val { font-size: .95rem; color: var(--brown-800); line-height: 1.6; }
.contact-item__val--link { color: var(--brown-600); transition: color var(--transition); }
.contact-item__val--link:hover { color: var(--amber); }

.open-now { color: #2ea84a; font-size: .8rem; font-weight: 600; }

.contact-links { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 4px; }
.contact-link {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  border-radius: 100px;
  font-size: .85rem;
  font-weight: 600;
  transition: var(--transition);
}
.contact-link--wa { background: #e8f8ed; color: #1a8c3c; }
.contact-link--wa:hover { background: #1a8c3c; color: white; }
.contact-link--ig { background: #fce8f3; color: #c13584; }
.contact-link--ig:hover { background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); color: white; }

/* Map */
.contacts__map { border-radius: var(--radius-lg); overflow: hidden; }
.map-placeholder { background: #e8e0d5; border-radius: var(--radius-lg); overflow: hidden; }
.map-placeholder__inner { position: relative; }
.map-svg { width: 100%; height: auto; display: block; }
.map-btn {
  position: absolute;
  bottom: 16px; left: 50%;
  transform: translateX(-50%);
  background: var(--brown-700);
  color: white;
  padding: 10px 20px;
  border-radius: 100px;
  font-size: .85rem;
  font-weight: 600;
  white-space: nowrap;
  transition: var(--transition);
  box-shadow: var(--shadow-md);
}
.map-btn:hover { background: var(--brown-900); transform: translateX(-50%) translateY(-2px); }

/* ================================================
   FOOTER
   ================================================ */
.footer {
  background: var(--brown-900);
  padding: 40px 0 24px;
}
.footer__inner {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  margin-bottom: 20px;
}
.footer__tagline { font-size: .8rem; color: rgba(255,255,255,.4); margin-top: 4px; }
.footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
}
.footer__links a {
  font-size: .85rem;
  color: rgba(255,255,255,.55);
  transition: color var(--transition);
}
.footer__links a:hover { color: var(--amber); }
.footer__social { display: flex; gap: 12px; }
.social-link {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.6);
  transition: var(--transition);
}
.social-link svg { width: 18px; height: 18px; }
.social-link:hover { background: var(--amber); color: var(--brown-900); }

.footer__bottom {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.footer__bottom p { font-size: .8rem; color: rgba(255,255,255,.3); }

/* ================================================
   FLOATING WHATSAPP
   ================================================ */
.float-wa {
  position: fixed;
  bottom: 24px;
  right: 20px;
  z-index: 900;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: white;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,.4);
  transition: var(--transition);
}
.float-wa svg { width: 28px; height: 28px; }
.float-wa:hover { transform: scale(1.1); box-shadow: 0 6px 24px rgba(37,211,102,.5); }

/* ================================================
   RESPONSIVE — TABLET (≥640px)
   ================================================ */
@media (min-width: 640px) {
  .services__grid { grid-template-columns: 1fr 1fr; }
  .pricing__grid { flex-direction: row; align-items: stretch; flex-wrap: wrap; }
  .pricing-card { flex: 1 1 200px; }
  .review-card { min-width: calc(50% - 8px); }
  .contacts__grid { flex-direction: row; }
  .contacts__info { flex: 1 1 300px; }
  .contacts__map { flex: 1 1 300px; }
  .whyus__grid { grid-template-columns: repeat(3, 1fr); }
  .footer__inner { flex-direction: row; align-items: flex-start; flex-wrap: wrap; justify-content: space-between; }
}

/* ================================================
   RESPONSIVE — DESKTOP (≥1024px)
   ================================================ */
@media (min-width: 1024px) {
  :root { --header-h: 72px; }

  .container { padding: 0 40px; }

  /* Header */
  .nav {
    display: flex;
    flex: 1;
    justify-content: center;
  }
  .nav__list {
    display: flex;
    gap: 4px;
  }
  .nav__link {
    padding: 8px 14px;
    font-size: .88rem;
    font-weight: 500;
    color: var(--brown-700);
    border-radius: 100px;
    transition: var(--transition);
  }
  .nav__link:hover { background: var(--cream-dark); color: var(--brown-900); }
  .header__cta { display: inline-flex; }
  .burger { display: none; }

  /* Hero */
  .hero__content { padding: 80px 40px; }

  /* About */
  .about__grid { flex-direction: row; align-items: center; gap: 72px; }
  .about__visual { flex: 1 1 40%; }
  .about__text { flex: 1 1 50%; }

  /* Services */
  .services__grid { grid-template-columns: repeat(3, 1fr); }

  /* Pricing */
  .pricing__grid { flex-wrap: nowrap; }
  .pricing-card { flex: 1; }

  /* Reviews */
  .review-card { min-width: calc(33.333% - 11px); }

  /* Section */
  .section { padding: 96px 0; }
  .section__header { margin-bottom: 56px; }
}

/* ================================================
   UTILITIES & ANIMATIONS
   ================================================ */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .6s ease, transform .6s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* Stagger delays */
.fade-in:nth-child(1) { transition-delay: 0ms; }
.fade-in:nth-child(2) { transition-delay: 80ms; }
.fade-in:nth-child(3) { transition-delay: 160ms; }
.fade-in:nth-child(4) { transition-delay: 240ms; }
.fade-in:nth-child(5) { transition-delay: 320ms; }
.fade-in:nth-child(6) { transition-delay: 400ms; }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
