/* ============================================================
   Студія масажу Oliva — styles.css
   Темна оливкова luxury-естетика (Playfair Display + Inter).
   База — референс замовника; розширено: верхня смужка, перемикач
   мов, галерея, фітобочка, онлайн-чат, мобільне меню.
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black: #080A07;
  --black-2: #0e120c;
  --olive: #2E3D22;
  --olive-mid: #4A5E35;
  --olive-light: #7A9156;
  --cream: #F2EDE4;
  --warm: #E8DFD0;
  --gold: #B8955A;
  --text: #D4CFC6;
  --text-dim: #8A8880;
  --line: rgba(122,145,86,0.18);
  --r: 12px;
  --container: 1200px;
}

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: hidden; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--black);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
em { font-style: italic; }
.container { max-width: var(--container); margin: 0 auto; padding: 0 48px; }

/* ── TOP UTILITY BAR ── */
.topbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 101;
  background: var(--black);
  border-bottom: 1px solid var(--line);
  font-size: 0.78rem;
}
.topbar__inner {
  max-width: var(--container); margin: 0 auto; padding: 7px 48px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.topbar__socials { display: flex; align-items: center; gap: 6px; }
.soc {
  width: 40px; height: 40px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-dim);
  border: 1px solid transparent;
  transition: color .25s, background .25s, border-color .25s, transform .2s;
  font-size: 22px;
}
.soc svg { width: 22px; height: 22px; }
.soc:hover { color: var(--cream); background: var(--olive); border-color: var(--olive-light); transform: translateY(-1px); }
.topbar__contacts { display: flex; align-items: center; gap: 22px; }
.topbar__item {
  display: inline-flex; align-items: center; gap: 7px;
  color: var(--text-dim); transition: color .25s; white-space: nowrap;
}
.topbar__item svg { color: var(--olive-light); flex-shrink: 0; }
.topbar__item--phone { color: var(--cream); font-weight: 500; }
a.topbar__item:hover { color: var(--cream); }

/* ── NAV ── */
nav {
  position: fixed; top: 44px; left: 0; right: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 48px;
  transition: background .4s, padding .4s, top .4s;
}
nav.scrolled {
  top: 0;
  background: rgba(8,10,7,0.96);
  backdrop-filter: blur(12px);
  padding: 12px 48px;
  border-bottom: 1px solid var(--line);
}
.nav-logo { display: flex; align-items: center; gap: 11px; }
.nav-logo__img { width: 42px; height: 42px; object-fit: contain; }
.nav-logo__text {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem; color: var(--cream); letter-spacing: 0.08em;
}
.nav-logo__text .dot, .footer-logo .dot { color: var(--olive-light); }
.nav-links { display: flex; gap: 30px; }
.nav-links a {
  color: rgba(212,207,198,0.7);
  font-size: 0.82rem; letter-spacing: 0.06em; text-transform: uppercase;
  transition: color .3s;
}
.nav-links a:hover { color: var(--cream); }
.nav-right { display: flex; align-items: center; gap: 18px; }

/* language switch */
.lang-switch {
  display: flex; align-items: center; gap: 6px;
  font-size: 0.8rem; letter-spacing: 0.05em; color: var(--text-dim);
}
.lang-switch button {
  color: var(--text-dim); font-weight: 500; padding: 2px 2px; transition: color .25s;
}
.lang-switch button.active { color: var(--olive-light); }
.lang-switch button:hover { color: var(--cream); }

.nav-cta {
  background: var(--olive); color: var(--cream);
  padding: 10px 22px; border-radius: 50px;
  border: 1px solid var(--olive-light);
  font-size: 0.8rem; letter-spacing: 0.04em;
  transition: background .3s, transform .2s;
}
.nav-cta:hover { background: var(--olive-mid); transform: translateY(-1px); }

/* burger */
.burger { display: none; width: 30px; height: 22px; position: relative; cursor: pointer; touch-action: manipulation; -webkit-tap-highlight-color: transparent; }
.burger span { position: absolute; left: 0; height: 2px; width: 100%; background: var(--cream); transition: .3s; }
.burger span:nth-child(1) { top: 0; }
.burger span:nth-child(2) { top: 10px; }
.burger span:nth-child(3) { top: 20px; }
.burger.open span:nth-child(1) { top: 10px; transform: rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { top: 10px; transform: rotate(-45deg); }

/* Close button inside the mobile slide-out panel (hidden on desktop) */
.nav-close {
  display: none; position: absolute; top: 14px; right: 16px;
  width: 40px; height: 40px; align-items: center; justify-content: center;
  border: none; background: none; color: var(--cream);
  font-size: 30px; line-height: 1; cursor: pointer; padding: 0;
  -webkit-tap-highlight-color: transparent;
}
.nav-close:hover { color: var(--olive-light); }
.nav-phone-item { display: none; }
.nav-phone-link { display: flex; align-items: center; gap: 8px; color: var(--olive-light) !important; font-size: 1.05rem; font-weight: 600; letter-spacing: .02em; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 30px; border-radius: 50px;
  font-size: 0.85rem; font-weight: 500; letter-spacing: 0.04em;
  transition: all .3s; cursor: pointer; border: none; white-space: nowrap;
}
.btn-primary { background: var(--olive-light); color: var(--black); }
.btn-primary:hover { background: #8FA864; transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--cream); border: 1px solid rgba(212,207,198,0.3); }
.btn-outline:hover { border-color: var(--cream); background: rgba(255,255,255,0.05); }
.btn-dark { background: var(--black); color: var(--cream); }
.btn-dark:hover { background: #1a1f16; transform: translateY(-2px); }
.btn-cert { background: rgba(122,145,86,0.15); color: var(--cream); border: 1px solid rgba(122,145,86,0.5); }
.btn-cert:hover { background: var(--olive); border-color: var(--olive-light); transform: translateY(-2px); }

/* ── HERO ── */
.hero { min-height: 100vh; position: relative; overflow: hidden; display: flex; align-items: center; justify-content: flex-start; }
.hero-bg-photo { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; display: block; }
.hero-bg-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; display: none; }
@media (max-width: 900px) {
  .hero-bg-photo { display: none; }
  .hero-bg-video { display: block; }
}
.hero-bg-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.25); z-index: 1; }
.hero-center {
  position: absolute; left: 50%; top: 50%; transform: translateY(-50%);
  z-index: 2; text-align: left;
  display: flex; flex-direction: column; align-items: flex-start;
  padding: 0 48px 0 0; width: 46%; max-width: 720px;
}
@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(122,145,86,0.5); }
  50% { box-shadow: 0 0 0 10px rgba(122,145,86,0); }
}
.btn-pulse { animation: pulse-glow 2s ease-in-out infinite; }

.hero-eyebrow {
  font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--olive-light); margin-bottom: 24px;
  display: flex; align-items: center; gap: 12px;
}
.hero-eyebrow::before { display: none; }
.hero-eyebrow::after { display: none; }
.hero-brand {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 6vw, 5.5rem); line-height: 1.08; color: #fff; margin-bottom: 16px;
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 3vw, 2.75rem); line-height: 1.15; color: var(--cream); margin-bottom: 28px;
}
.hero-title em { font-style: italic; color: #fff; }
.hero-desc { font-size: 1rem; line-height: 1.7; color: rgba(255,255,255,0.75); max-width: 460px; margin-bottom: 40px; }
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; justify-content: flex-start; }

.hero-badge {
  position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
  background: rgba(8,10,7,0.85); backdrop-filter: blur(16px);
  border: 1px solid rgba(122,145,86,0.3); border-radius: 50px;
  padding: 10px 24px; display: flex; align-items: center; gap: 18px; z-index: 10; white-space: nowrap;
}
.hero-badge-item { display: flex; align-items: center; gap: 6px; font-size: 0.78rem; color: var(--text-dim); }
.hero-badge-item strong { color: var(--cream); }
.hero-badge-sep { width: 1px; height: 20px; background: rgba(122,145,86,0.3); }

/* ── SECTION GENERIC ── */
section { padding: 100px 0; }
.section-label {
  font-size: 0.7rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--olive-light); margin-bottom: 16px; display: flex; align-items: center; gap: 10px;
}
.section-label::before { content: ''; width: 24px; height: 1px; background: var(--olive-light); }
.section-title { font-family: 'Playfair Display', serif; font-size: clamp(2rem, 3.5vw, 3rem); line-height: 1.15; color: var(--cream); margin-bottom: 16px; }
.section-sub { font-size: 0.95rem; color: var(--text-dim); line-height: 1.7; max-width: 540px; }

/* ── MARQUEE ── */
.marquee-wrap { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); overflow: hidden; padding: 18px 0; background: rgba(46,61,34,0.15); }
.marquee-track { display: flex; animation: marquee 28s linear infinite; width: max-content; }
.marquee-item { font-size: 0.75rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--text-dim); padding: 0 40px; display: flex; align-items: center; gap: 16px; }
.marquee-item::after { content: '✦'; color: var(--olive-light); font-size: 0.6rem; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── SERVICES CAROUSEL ── */
.srv-carousel-section { padding: 72px 0 48px; }
.srv-carousel-header { margin-bottom: 36px; }

/* Desktop: статична сітка */
.srv-carousel-wrap { position: relative; }
.srv-carousel { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; padding: 0 48px; }
.srv-slide { height: 380px; border-radius: 18px; overflow: hidden; position: relative; text-decoration: none; display: block; }
.srv-carousel-arrow { display: none; }
.srv-carousel-dots { display: none; }
.srv-slide img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.srv-slide:hover img { transform: scale(1.05); }
.srv-slide-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.15) 55%, transparent 100%); }
.srv-slide-content { position: absolute; bottom: 0; left: 0; right: 0; padding: 28px 24px; }
.srv-slide-name { font-family: 'Playfair Display', serif; font-size: 1.35rem; color: #fff; line-height: 1.2; margin-bottom: 6px; }
.srv-slide-price { font-size: 0.9rem; color: var(--olive-light); font-weight: 500; margin-bottom: 16px; letter-spacing: 0.03em; }
.srv-slide-btn { display: inline-block; background: rgba(122,145,86,0.25); border: 1px solid rgba(122,145,86,0.5); border-radius: 50px; padding: 8px 20px; font-size: 0.8rem; color: #fff; backdrop-filter: blur(4px); transition: background .2s; }
.srv-slide:hover .srv-slide-btn { background: var(--olive-light); border-color: var(--olive-light); }
.srv-carousel-arrow { position: absolute; top: 50%; transform: translateY(-50%); width: 44px; height: 44px; border-radius: 50%; background: rgba(8,10,7,0.7); backdrop-filter: blur(8px); border: 1px solid var(--line); color: var(--cream); font-size: 18px; cursor: pointer; z-index: 10; transition: background .2s; align-items: center; justify-content: center; }
.srv-carousel-arrow:hover { background: var(--olive); border-color: var(--olive-light); }
.srv-carousel-prev { left: 12px; }
.srv-carousel-next { right: 12px; }
.srv-carousel-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--line); border: none; cursor: pointer; transition: background .2s, transform .2s; padding: 0; }
.srv-carousel-dot.active { background: var(--olive-light); transform: scale(1.3); }
/* Mobile: карусель */
@media (max-width: 900px) {
  .srv-carousel-wrap { overflow: hidden; }
  .srv-carousel { display: flex; gap: 12px; padding: 0; grid-template-columns: none; transition: transform .45s cubic-bezier(.4,0,.2,1); will-change: transform; }
  .srv-slide { flex: 0 0 auto; height: 320px; }
  .srv-carousel-arrow { display: flex; }
  .srv-carousel-dots { display: flex; justify-content: center; gap: 8px; margin-top: 24px; }
}

/* ── SERVICES ── */
.services-section { background: var(--black); }
.services-header { display: flex; flex-direction: column; align-items: flex-start; margin-bottom: 56px; gap: 24px; }
.srv-tabs { display: flex; gap: 4px; background: rgba(46,61,34,0.3); border: 1px solid var(--line); border-radius: 50px; padding: 5px; overflow-x: auto; scrollbar-width: none; }
.srv-tabs::-webkit-scrollbar { display: none; }
.srv-tab { padding: 8px 12px; border-radius: 50px; font-size: 0.72rem; color: var(--text-dim); transition: all .25s; white-space: nowrap; flex-shrink: 0; }
.srv-tab.active { background: var(--olive); color: var(--cream); border: 1px solid var(--olive-light); }
.srv-panel { display: none; }
.srv-panel.active { display: block; animation: fade .4s ease; }
@keyframes fade { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 3px; }
.srv-card { background-color: rgba(12,16,10,0.88); background-size: cover; background-position: center top; background-blend-mode: multiply; border: 1px solid rgba(122,145,86,0.1); padding: 16px 18px; display: flex; align-items: center; justify-content: space-between; gap: 12px; transition: background-color .3s, border-color .3s; position: relative; overflow: hidden; }
.srv-card::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 3px; background: var(--olive-light); transform: scaleY(0); transform-origin: bottom; transition: transform .3s; }
.srv-card:hover { background-color: rgba(30,42,22,0.72); }
.srv-card:hover::before { transform: scaleY(1); }
.srv-card-info { flex: 1; }
.srv-card-name { font-size: 0.82rem; color: var(--cream); font-weight: 500; margin-bottom: 4px; line-height: 1.4; }
.srv-card-dur { font-size: 0.78rem; color: var(--text-dim); display: flex; align-items: center; gap: 6px; }
.srv-card-dur::before { content: '⏱'; font-size: 0.7rem; }
.srv-card-right { text-align: right; flex-shrink: 0; }
.srv-card-price { font-family: 'Playfair Display', serif; font-size: 1.4rem; color: var(--cream); white-space: nowrap; }
.srv-card-price span { font-size: 0.75rem; font-family: 'Inter', sans-serif; color: var(--text-dim); margin-left: 2px; }
.srv-card-btn { display: inline-block; margin-top: 4px; padding: 3px 10px; background: transparent; border: 1px solid rgba(122,145,86,0.4); border-radius: 50px; font-size: 0.63rem; color: var(--olive-light); transition: all .25s; letter-spacing: 0.04em; }
.srv-card-btn:hover { background: var(--olive); border-color: var(--olive-light); color: var(--cream); }

.srv-list { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; margin-top: 2px; }
.srv-section-title { grid-column: 1/-1; font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--olive-light); padding: 20px 24px 8px; font-weight: 600; border-bottom: 1px solid rgba(122,145,86,0.18); }
.srv-category-label { display: none; }
.srv-list-item { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; padding: 18px 24px; background: rgba(20,24,18,0.5); border: 1px solid rgba(122,145,86,0.1); gap: 8px 12px; transition: background .25s; }
.srv-list-item:hover { background: rgba(46,61,34,0.2); }
.srv-list-name { font-size: 0.88rem; color: var(--text); line-height: 1.4; }
.srv-list-meta { display: flex; align-items: center; gap: 10px; flex-shrink: 0; flex-wrap: wrap; }
.srv-list-dur { font-size: 0.75rem; color: var(--text-dim); }
.srv-list-price { font-family: 'Playfair Display', serif; font-size: 1.1rem; color: var(--cream); white-space: nowrap; }
.srv-list-price .cur { font-family: 'Inter', sans-serif; font-size: 0.75rem; color: var(--text-dim); }
.srv-list-price [data-i18n="from"] { font-family: 'Inter', sans-serif; font-size: 0.72rem; color: var(--text-dim); }
.srv-item-desc { display: none; width: 100%; font-size: 13px; color: var(--text-dim); line-height: 1.65; padding: 6px 0 2px; border-top: 1px solid rgba(122,145,86,0.12); margin-top: 4px; }

/* ── GALLERY ── */
.gallery-section { background: rgba(14,18,12,0.6); }
.gallery-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: 40px; }
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 4px; }
.g-item { overflow: hidden; aspect-ratio: 1/1; background: var(--olive); }
.g-item img { width: 100%; height: 100%; object-fit: cover; opacity: 0.88; transition: transform .6s ease, opacity .3s; }
.g-item:hover img { transform: scale(1.06); opacity: 1; }

/* ── ФІТОБОЧКА ── */
.phyto-section { background: var(--black); border-top: 1px solid var(--line); }
.phyto-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 60px; align-items: center; }
.phyto-media { position: relative; border-radius: var(--r); overflow: hidden; aspect-ratio: 4/5; background: var(--olive); }
.phyto-media img, .phyto-video { width: 100%; height: 100%; object-fit: cover; opacity: 0.9; }
.phyto-badge { position: absolute; bottom: 18px; left: 18px; background: rgba(8,10,7,0.85); backdrop-filter: blur(10px); border: 1px solid rgba(122,145,86,0.3); border-radius: 50px; padding: 8px 18px; font-size: 0.82rem; color: var(--cream); }
.phyto-lead { font-size: 1.05rem; color: var(--warm); line-height: 1.7; margin: 8px 0 16px; }
.phyto-p { font-size: 0.95rem; color: var(--text-dim); line-height: 1.7; margin-bottom: 24px; }
.phyto-gift { background: rgba(46,61,34,0.2); border: 1px solid var(--line); border-radius: var(--r); padding: 22px 24px; margin-bottom: 24px; }
.phyto-gift h3 { font-family: 'Playfair Display', serif; font-size: 1.25rem; color: var(--cream); margin-bottom: 12px; font-weight: 500; }
.phyto-list { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.phyto-list li { font-size: 0.92rem; color: var(--text); }
.phyto-warm { font-size: 0.92rem; color: var(--olive-light); font-style: italic; }
.phyto-meta { display: flex; flex-wrap: wrap; gap: 20px; margin-bottom: 24px; }
.phyto-meta__item { font-size: 0.9rem; color: var(--text); transition: color .25s; }
.phyto-meta__item:hover { color: var(--olive-light); }
.phyto-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 22px; }
.phyto-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.phyto-tags span { font-size: 0.74rem; color: var(--text-dim); background: rgba(46,61,34,0.25); border: 1px solid var(--line); border-radius: 50px; padding: 4px 12px; }

/* ── АКЦІЇ / PROMO ── */
.promo-section { padding: 80px 0; }
.promo-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3px; margin-top: 48px; }
.promo-block { background: rgba(20,24,18,0.8); border: 1px solid rgba(122,145,86,0.12); padding: 32px; }
.promo-block-title { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--olive-light); font-weight: 600; margin-bottom: 20px; }
.promo-note { font-size: 9px; opacity: 0.6; display: block; margin-top: 2px; letter-spacing: 0.05em; }
.promo-row { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 14px 0; border-top: 1px solid rgba(122,145,86,0.12); }
.promo-name { font-size: 0.88rem; color: var(--text); line-height: 1.4; }
.promo-sub { display: block; font-size: 0.72rem; color: var(--text-dim); margin-top: 2px; }
.promo-val { font-family: 'Playfair Display', serif; font-size: 1.6rem; color: var(--olive-light); white-space: nowrap; flex-shrink: 0; }
@media (max-width: 900px) { .promo-grid { grid-template-columns: 1fr; } }

/* ---- Правила відвідування ---- */
.rules-section { padding: 80px 0; }
.rules-accordion { margin-top: 48px; display: flex; flex-direction: column; gap: 3px; }
.rules-item { border: 1px solid rgba(122,145,86,0.12); background: rgba(20,24,18,0.8); }
.rules-trigger { width: 100%; display: flex; align-items: center; justify-content: space-between; padding: 20px 28px; cursor: pointer; background: none; border: none; text-align: left; gap: 16px; }
.rules-trigger-title { font-size: 0.92rem; color: var(--cream); font-weight: 500; letter-spacing: 0.03em; }
.rules-trigger-icon { width: 18px; height: 18px; flex-shrink: 0; color: var(--olive-light); transition: transform 0.3s; }
.rules-item.open .rules-trigger-icon { transform: rotate(45deg); }
.rules-body { display: none; padding: 0 28px 22px; }
.rules-item.open .rules-body { display: block; }
.rules-block { margin-bottom: 18px; }
.rules-block:last-child { margin-bottom: 0; }
.rules-block-title { font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--olive-light); font-weight: 600; margin-bottom: 10px; }
.rules-block p { font-size: 0.84rem; color: var(--text-dim); line-height: 1.65; margin-bottom: 8px; }
.rules-block p:last-child { margin-bottom: 0; }
.rules-block p strong { color: var(--cream); font-weight: 500; }
@media (max-width: 600px) { .rules-trigger { padding: 16px 18px; } .rules-body { padding: 0 18px 18px; } }

/* ── TEAM ── */
.team-section { background: rgba(14,18,12,0.8); }
.team-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 2px; margin-top: 56px; }
.team-card { position: relative; overflow: hidden; aspect-ratio: 3/4; background: var(--olive); cursor: pointer; }
.team-card-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(8,10,7,0.9) 0%, rgba(8,10,7,0.2) 50%, transparent 100%); display: flex; flex-direction: column; justify-content: flex-end; padding: 28px; z-index: 2; }
.team-initial { font-family: 'Playfair Display', serif; font-size: 4rem; color: rgba(122,145,86,0.25); position: absolute; top: 50%; left: 50%; transform: translate(-50%,-60%); }
.team-name { font-family: 'Playfair Display', serif; font-size: 1.3rem; color: var(--cream); margin-bottom: 4px; }
.team-role { font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--olive-light); margin-bottom: 16px; }
.team-card a { display: block; padding: 10px 20px; background: rgba(46,61,34,0.7); border: 1px solid rgba(122,145,86,0.4); border-radius: 50px; font-size: 0.75rem; color: var(--cream); transition: all .3s; backdrop-filter: blur(8px); text-align: center; }
.team-card a:hover { background: var(--olive-light); color: var(--black); }

/* ── WHY / ABOUT ── */
.why-section { background: var(--black); }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; margin-top: 24px; }
.why-visual { position: relative; height: 500px; }
.why-img-main { position: absolute; top: 0; left: 0; width: 75%; height: 80%; background: var(--olive); border-radius: var(--r); overflow: hidden; }
.why-img-main img { width: 100%; height: 100%; object-fit: cover; opacity: 0.85; }
.why-img-accent { position: absolute; bottom: 0; right: 0; width: 55%; height: 55%; background: var(--olive-mid); border-radius: var(--r); overflow: hidden; border: 3px solid var(--black); }
.why-img-accent img { width: 100%; height: 100%; object-fit: cover; opacity: 0.85; }
.why-stat { position: absolute; top: 40%; left: 60%; background: rgba(8,10,7,0.9); backdrop-filter: blur(12px); border: 1px solid rgba(122,145,86,0.3); border-radius: var(--r); padding: 20px 24px; z-index: 10; }
.why-stat-num { font-family: 'Playfair Display', serif; font-size: 2rem; color: var(--olive-light); }
.why-stat-label { font-size: 0.75rem; color: var(--text-dim); }
.why-features { display: flex; flex-direction: column; gap: 28px; margin-top: 40px; }
.why-feature { display: flex; gap: 20px; align-items: flex-start; padding-bottom: 28px; border-bottom: 1px solid rgba(122,145,86,0.1); }
.why-feature:last-child { border-bottom: none; padding-bottom: 0; }
.why-icon { width: 44px; height: 44px; background: rgba(46,61,34,0.5); border: 1px solid rgba(122,145,86,0.3); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; }
.why-feature-title { font-size: 0.95rem; color: var(--cream); font-weight: 500; margin-bottom: 6px; }
.why-feature-desc { font-size: 0.85rem; color: var(--text-dim); line-height: 1.6; }

/* ── CTA STRIP ── */
.cta-strip { position: relative; overflow: hidden; text-align: center; min-height: 520px; display: flex; align-items: center; justify-content: center; }
.cta-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.cta-bg-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.cta-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.55); z-index: 1; }
.cta-content { position: relative; z-index: 2; padding: 80px 20px; }
.cta-strip h2 { font-family: 'Playfair Display', serif; font-size: clamp(2.8rem, 7vw, 6rem); color: #fff; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 16px; }
.cta-strip p { color: rgba(255,255,255,0.8); margin-bottom: 36px; font-size: clamp(1rem, 1.5vw, 1.2rem); line-height: 1.6; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── CALL BUTTON ── */
@keyframes call-pulse {
  0%,100% { box-shadow: 0 10px 30px rgba(122,145,86,0.45), 0 0 0 0 rgba(143,168,100,0.7); }
  50%      { box-shadow: 0 10px 30px rgba(122,145,86,0.45), 0 0 0 14px rgba(143,168,100,0); }
}
.call-btn {
  position: fixed; bottom: 116px; right: 24px; z-index: 1100;
  width: 60px; height: 60px; border-radius: 50%;
  background: var(--olive-light); color: var(--black); border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  animation: call-pulse 2.2s ease-out infinite;
  transition: transform .25s, background .25s;
}
.call-btn:hover { transform: translateY(-3px); background: #8FA864; }
.call-btn svg { width: 26px; height: 26px; fill: var(--black); }

.call-popup {
  position: fixed; bottom: 160px; right: 24px; z-index: 1200;
  background: #1a1f16; border: 1px solid rgba(122,145,86,0.35);
  border-radius: 16px; padding: 24px 20px; width: 280px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.5);
  display: none; flex-direction: column; gap: 14px;
}
.call-popup.open { display: flex; }
.call-popup-title { font-family: 'Playfair Display', serif; font-size: 1.1rem; color: var(--cream); }
.call-popup-phone { display: flex; align-items: center; gap: 8px; color: var(--olive-light); font-size: 1rem; font-weight: 600; text-decoration: none; }
.call-popup-phone svg { width: 18px; height: 18px; fill: var(--olive-light); flex-shrink: 0; }
.call-popup-sub { font-size: 0.8rem; color: var(--text-dim); }
.call-popup input[type="tel"] {
  width: 100%; background: rgba(255,255,255,0.06); border: 1px solid rgba(122,145,86,0.3);
  border-radius: 8px; padding: 10px 14px; color: var(--cream); font-size: 0.95rem; outline: none;
}
.call-popup input[type="tel"]::placeholder { color: rgba(255,255,255,0.3); }
.call-popup input[type="tel"]:focus { border-color: var(--olive-light); }
.call-popup-send {
  background: var(--olive); color: #fff; border: none; border-radius: 8px;
  padding: 11px; font-size: 0.95rem; cursor: pointer; transition: background .2s;
}
.call-popup-send:hover { background: var(--olive-light); color: #1a1f16; }
.call-popup-close {
  position: absolute; top: 10px; right: 14px; background: none; border: none;
  color: var(--text-dim); font-size: 1.2rem; cursor: pointer; line-height: 1;
}
.call-popup-msg { font-size: 0.82rem; color: var(--olive-light); display: none; text-align: center; }

/* ── CONTACTS ── */
.contacts-section { background: rgba(14,18,12,0.9); border-top: 1px solid var(--line); }
.contacts-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; margin-top: 56px; }
.contact-block { margin-bottom: 32px; }
.contact-label { font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--olive-light); margin-bottom: 8px; }
.contact-value { font-size: 1.1rem; color: var(--cream); transition: color .25s; }
a.contact-value:hover { color: var(--olive-light); }
.social-row { display: flex; gap: 12px; margin-top: 28px; flex-wrap: wrap; }
.social-btn { width: 48px; height: 48px; border-radius: 50%; background: rgba(46,61,34,0.4); border: 1px solid rgba(122,145,86,0.3); display: flex; align-items: center; justify-content: center; color: var(--text-dim); transition: all .3s; }
.social-btn svg { width: 22px; height: 22px; }
.social-btn:hover { background: var(--olive); color: var(--cream); border-color: var(--olive-light); }
.map-placeholder { background: rgba(46,61,34,0.2); border: 1px solid var(--line); border-radius: var(--r); height: 320px; display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 10px; color: var(--text-dim); font-size: 0.95rem; text-align: center; transition: background .3s; }
.map-placeholder:hover { background: rgba(46,61,34,0.35); }
.map-embed-wrap { display: flex; flex-direction: column; gap: 10px; }
.map-open-link { font-size: 13px; color: var(--olive-light); text-decoration: none; text-align: center; }
.map-open-link:hover { color: var(--cream); }
.map-icon { font-size: 2rem; }
.map-sub { font-size: 0.75rem; }

/* ── FOOTER ── */
footer { background: var(--black); border-top: 1px solid var(--line); padding: 30px 48px; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.footer-brand { display: flex; align-items: center; gap: 10px; }
.footer-logo-img { width: 34px; height: 34px; object-fit: contain; }
.footer-logo { font-family: 'Playfair Display', serif; font-size: 1.1rem; color: var(--cream); }
.footer-copy { font-size: 0.78rem; color: var(--text-dim); }

/* ── ONLINE CHAT ── */
.chat { position: fixed; bottom: 24px; right: 24px; z-index: 180; }
.chat-launcher { position: relative; width: 60px; height: 60px; border-radius: 50%; background: var(--olive-light); color: var(--black); display: flex; align-items: center; justify-content: center; box-shadow: 0 10px 30px rgba(122,145,86,0.45); transition: transform .25s, background .25s; }
.chat-launcher:hover { transform: translateY(-3px); background: #8FA864; }
.chat-launcher__pulse { position: absolute; inset: 0; border-radius: 50%; border: 2px solid var(--olive-light); animation: pulse 2.2s ease-out infinite; }
@keyframes pulse { 0% { transform: scale(1); opacity: .6; } 100% { transform: scale(1.6); opacity: 0; } }

.chat-panel { position: absolute; bottom: 76px; right: 0; width: 340px; max-width: calc(100vw - 32px); background: var(--black-2); border: 1px solid var(--line); border-radius: 16px; overflow: hidden; box-shadow: 0 30px 70px -20px rgba(0,0,0,0.8); animation: chatIn .3s ease; }
@keyframes chatIn { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }
.chat-head { display: flex; align-items: center; gap: 12px; padding: 16px; background: var(--olive); border-bottom: 1px solid var(--line); }
.chat-head__ava { width: 40px; height: 40px; border-radius: 50%; background: var(--olive-light); color: var(--black); display: flex; align-items: center; justify-content: center; font-family: 'Playfair Display', serif; font-size: 1.2rem; }
.chat-head__meta { display: flex; flex-direction: column; flex: 1; }
.chat-head__meta strong { color: var(--cream); font-size: 0.92rem; font-weight: 600; }
.chat-head__meta span { color: rgba(242,237,228,0.7); font-size: 0.74rem; }
.chat-close { color: var(--cream); font-size: 1.5rem; line-height: 1; width: 28px; height: 28px; }
.chat-body { padding: 18px 16px; display: flex; flex-direction: column; gap: 10px; max-height: 240px; overflow-y: auto; }
.chat-msg { font-size: 0.86rem; line-height: 1.5; padding: 10px 14px; border-radius: 14px; max-width: 90%; }
.chat-msg--in { background: rgba(46,61,34,0.4); border: 1px solid var(--line); color: var(--warm); align-self: flex-start; border-bottom-left-radius: 4px; }
.chat-msg--out { background: var(--olive-light); color: var(--black); align-self: flex-end; border-bottom-right-radius: 4px; }
.chat-msg__time { display: block; font-size: 0.64rem; opacity: 0.55; margin-top: 4px; text-align: right; }
.chat-quick { padding: 0 16px 16px; display: flex; flex-wrap: wrap; gap: 8px; }
.chat-q { font-size: 0.78rem; padding: 8px 14px; border-radius: 50px; border: 1px solid var(--line); color: var(--cream); transition: all .25s; }
.chat-q:hover { transform: translateY(-1px); }
.chat-q--wa:hover { background: #25D366; border-color: #25D366; color: #042b14; }
.chat-q--vb:hover { background: #7360f2; border-color: #7360f2; color: #fff; }
.chat-q--tg:hover { background: #2AABEE; border-color: #2AABEE; color: #03283d; }
.chat-q--ig:hover { background: #E1306C; border-color: #E1306C; color: #fff; }
.chat-q--call:hover { background: var(--olive); border-color: var(--olive-light); }
.chat-form { display: flex; gap: 8px; padding: 0 16px 16px; }
.chat-form input { flex: 1; background: rgba(46,61,34,0.25); border: 1px solid var(--line); border-radius: 50px; padding: 10px 16px; color: var(--cream); font-size: 0.85rem; }
.chat-form input::placeholder { color: var(--text-dim); }
.chat-form button { width: 40px; height: 40px; border-radius: 50%; background: var(--olive-light); color: var(--black); font-size: 1.1rem; flex-shrink: 0; }

/* ── STICKY CTA (mobile) ── */
.sticky-cta { position: fixed; bottom: 24px; left: 24px; z-index: 99; display: none; }
.sticky-cta .btn { box-shadow: 0 6px 24px rgba(122,145,86,0.4); }

/* ── REVEAL ── */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ── MOBILE NAV PANEL ── */
.nav-backdrop { position: fixed; inset: 0; background: rgba(0,0,0,0.6); z-index: 190; opacity: 0; visibility: hidden; transition: .3s; }
.nav-backdrop.open { opacity: 1; visibility: visible; }

/* ── RESPONSIVE ── */
@media (max-width: 1040px) {
  .topbar__item:not(.topbar__item--phone) { display: none; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 900px) {
  .topbar { display: none; }
  nav { top: 0; padding: 14px 20px; }
  nav.scrolled { top: 0; padding: 10px 20px; }
  .container { padding: 0 24px; }
  /* backdrop-filter on the scrolled nav makes it a containing block for its
     fixed-positioned descendants, which traps the slide-out panel inside the
     short nav bar. Drop it on mobile; the near-opaque background stays. */
  nav.scrolled { backdrop-filter: none; -webkit-backdrop-filter: none; }
  .nav-links {
    position: fixed; top: 0; right: 0; bottom: 0; width: 62%; max-width: 270px;
    background: var(--black-2); border-left: 1px solid var(--line);
    flex-direction: column; justify-content: center; gap: 26px; padding: 40px;
    transform: translateX(100%); transition: transform .35s ease; z-index: 210;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a { font-size: 1rem; }
  .nav-close { display: flex; }
  .burger { display: block; }
  .nav-cta { display: none; }
  .nav-phone-item { display: block; }
  .hero { align-items: flex-start; justify-content: flex-start; }
  .hero-center { position: relative; left: auto; top: auto; transform: none; padding: 100px 24px 60px 24px; width: 100%; max-width: 100%; text-align: left; align-items: flex-start; }
  .hero-btns { justify-content: flex-start; }
  .hero-badge { bottom: 14px; left: 16px; right: 16px; transform: none; padding: 8px 14px; gap: 8px; font-size: 0.65rem; flex-wrap: wrap; justify-content: center; white-space: normal; }
  section { padding: 64px 0; }
  .services-header { flex-direction: column; align-items: flex-start; }
  .services-grid { grid-template-columns: 1fr; }
  .srv-list { grid-template-columns: 1fr; }
  .gallery-head { flex-direction: column; align-items: flex-start; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .phyto-grid { grid-template-columns: 1fr; gap: 32px; }
  .phyto-media { aspect-ratio: 16/10; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .team-card { aspect-ratio: 3/5; }
  .team-card-overlay { padding: 12px 14px; }
  .team-name { font-size: 1rem; margin-bottom: 2px; }
  .team-role { font-size: 0.55rem; letter-spacing: 0.06em; margin-bottom: 10px; white-space: nowrap; }
  .team-card a { padding: 7px 12px; font-size: 0.68rem; }
  .why-grid { grid-template-columns: 1fr; gap: 40px; }
  .why-visual { height: 320px; }
  .contacts-grid { grid-template-columns: 1fr; gap: 40px; }
  footer { flex-direction: column; gap: 12px; text-align: center; padding: 24px; }
  .sticky-cta { display: block; }
}
@media (max-width: 480px) {
  .nav-logo__text { font-size: 1.25rem; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .chat-panel {
    width: calc(100vw - 32px);
    position: fixed;
    bottom: 96px;
    right: 16px;
    left: 16px;
    max-height: calc(100dvh - 120px);
    overflow-y: auto;
  }
  .services-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .srv-tabs {
    flex-wrap: wrap;
    border-radius: 16px;
    overflow-x: visible;
    justify-content: flex-start;
    gap: 3px;
  }
  .srv-tab {
    font-size: 0.65rem;
    padding: 6px 10px;
  }
}
