/* ═══════════════════════════════════════════════════════════════
   SAMUI SPA — Sandy Light Luxury
   Warm cream · Dark text · Gold accents · Maximum airiness
═══════════════════════════════════════════════════════════════ */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;1,300;1,400&family=Jost:wght@300;400;500&display=swap');

:root {
  /* Sand palette */
  --sand-0:    #faf8f4;   /* page bg */
  --sand-1:    #f4f0e8;   /* card bg */
  --sand-2:    #ece5d8;   /* borders, dividers */
  --sand-3:    #ddd3c0;   /* stronger border */
  --sand-4:    #c9bba4;   /* muted */
  --dark:      #1c1610;   /* main text */
  --dark-2:    #2e261c;
  --mid:       #6b5c48;   /* secondary text */
  --light:     #9e8e7a;   /* muted text */
  --gold:      #b08d5a;   /* gold accent */
  --gold-2:    #c9a870;   /* lighter gold */
  --gold-bg:   rgba(176,141,90,.08);
  --white:     #ffffff;
  --trans:     0.35s ease;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'Jost', 'Helvetica Neue', Arial, sans-serif;
  --max-w:     1180px;
  --r:         0px;  /* no radius — clean lines */
}

/* ── RESET ─────────────────────────────────────────────────── */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  background: var(--sand-0);
  color: var(--dark);
  line-height: 1.75;
  font-size: 16px;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--gold); text-decoration: none; transition: color var(--trans); }
a:hover { color: var(--dark); }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }
h1,h2,h3,h4 {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.15;
  color: var(--dark);
}

/* ── LAYOUT ────────────────────────────────────────────────── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 48px; }
@media(max-width:640px){ .container { padding: 0 20px; } }
.section { padding: 120px 0; }
@media(max-width:768px){ .section { padding: 72px 0; } }

/* ── EYEBROW & DIVIDER ─────────────────────────────────────── */
.eyebrow {
  display: block;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.eyebrow.left { text-align: left; }
.gold-line {
  display: block;
  width: 40px;
  height: 1px;
  background: var(--gold);
  margin: 0 auto 22px;
  opacity: .5;
}
.gold-line.left { margin: 0 0 22px; }

/* ── SECTION HEADER ────────────────────────────────────────── */
.section-header { text-align: center; max-width: 620px; margin: 0 auto 80px; }
.section-ornament { color: var(--gold); display: block; margin-bottom: 16px; }
.section-ornament.left { text-align: left; }
.section-title {
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  color: var(--dark);
  margin-bottom: 18px;
  letter-spacing: -0.01em;
}
.section-title.left { text-align: left; }
.section-sub { color: var(--mid); font-size: 15px; line-height: 1.9; font-weight: 300; }
.section-btn { text-align: center; margin-top: 64px; }

/* ── BUTTONS ───────────────────────────────────────────────── */
.btn-gold {
  display: inline-block;
  padding: 14px 44px;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--dark) !important;
  background: transparent;
  border: 1px solid var(--dark);
  transition: all var(--trans);
}
.btn-gold:hover {
  background: var(--dark);
  color: var(--sand-0) !important;
}
.btn-gold.btn-large { padding: 17px 58px; font-size: 11.5px; }
.btn-gold-sm {
  display: inline-block;
  padding: 9px 24px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--dark) !important;
  border: 1px solid var(--sand-3);
  transition: all var(--trans);
}
.btn-gold-sm:hover { border-color: var(--dark); }
.btn-gold-outline {
  display: inline-block;
  padding: 14px 44px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--mid) !important;
  border: 1px solid var(--sand-3);
  transition: all var(--trans);
}
.btn-gold-outline:hover { border-color: var(--dark); color: var(--dark) !important; }
.btn-outline {
  display: inline-block;
  padding: 14px 44px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--mid) !important;
  border: 1px solid var(--sand-3);
  transition: all var(--trans);
}
.btn-outline:hover { color: var(--dark) !important; border-color: var(--dark); }
.btn-outline-light {
  display: inline-block;
  padding: 14px 44px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,.8) !important;
  border: 1px solid rgba(255,255,255,.35);
  transition: all var(--trans);
}
.btn-outline-light:hover { color: white !important; border-color: rgba(255,255,255,.7); }

/* ── ANNOUNCE BAR ──────────────────────────────────────────── */
.announce-bar {
  background: var(--dark);
  color: rgba(255,255,255,.7);
  text-align: center;
  padding: 11px 24px;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: flex; align-items: center; justify-content: center; gap: 20px;
}
.announce-bar a { color: var(--gold-2) !important; transition: opacity var(--trans); }
.announce-bar a:hover { opacity: .8; }

/* ── HEADER ────────────────────────────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 900;
  background: rgba(250,248,244,.97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--sand-2);
}
.site-header .container { display: flex; align-items: center; gap: 36px; height: 80px; }
.logo { flex-shrink: 0; }
.logo-img { height: 46px; }
.logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo-main {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 400;
  color: var(--dark);
  letter-spacing: 7px;
  text-transform: uppercase;
}
.logo-sub {
  font-family: var(--font-sans);
  font-size: 7.5px;
  letter-spacing: 3px;
  color: var(--gold);
  text-transform: uppercase;
  margin-top: 5px;
}
.main-nav { flex: 1; display: flex; align-items: center; gap: 4px; }
.nav-link {
  padding: 5px 16px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2px;
  color: var(--mid) !important;
  transition: color var(--trans);
  text-transform: uppercase;
}
.nav-link:hover, .nav-link.active { color: var(--dark) !important; }
.header-actions { display: flex; align-items: center; gap: 22px; flex-shrink: 0; }
.header-phone {
  display: flex; align-items: center; gap: 7px;
  font-size: 13px;
  font-weight: 400;
  color: var(--dark) !important;
  white-space: nowrap;
}
.header-phone svg { color: var(--gold); }
.header-phone:hover { color: var(--gold) !important; }
.cart-btn { position: relative; padding: 6px; color: var(--mid); display: flex; align-items: center; transition: color var(--trans); }
.cart-btn:hover { color: var(--dark); }
.cart-count { position: absolute; top: 0; right: 0; background: var(--dark); color: var(--sand-0); font-size: 8px; font-weight: 600; min-width: 15px; height: 15px; border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.burger-btn { display: none; flex-direction: column; gap: 5px; padding: 6px; }
.burger-btn span { width: 22px; height: 1px; background: var(--dark); display: block; transition: all var(--trans); }

/* ── MOBILE NAV ────────────────────────────────────────────── */
.mobile-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,.5); z-index: 1000; }
.mobile-overlay.active { display: block; }
.mobile-nav {
  position: fixed; top: 0; right: 0; width: 300px; height: 100vh;
  background: var(--sand-0); z-index: 1001; padding: 36px;
  display: flex; flex-direction: column;
  transform: translateX(100%); transition: transform .42s cubic-bezier(.4,0,.2,1);
  overflow-y: auto; border-left: 1px solid var(--sand-2);
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav-close { align-self: flex-end; color: var(--light); font-size: 18px; margin-bottom: 28px; padding: 4px; }
.mobile-logo { font-family: var(--font-serif); font-size: 22px; color: var(--dark); letter-spacing: 6px; margin-bottom: 28px; padding-bottom: 24px; border-bottom: 1px solid var(--sand-2); }
.mobile-nav a { color: var(--mid) !important; font-size: 10px; font-weight: 500; letter-spacing: 2.5px; padding: 15px 0; border-bottom: 1px solid var(--sand-2); text-transform: uppercase; transition: color var(--trans); }
.mobile-nav a:hover { color: var(--dark) !important; }
.mobile-nav-contacts { margin-top: 28px; padding-top: 24px; border-top: 1px solid var(--sand-2); display: flex; flex-direction: column; gap: 12px; }
.mobile-nav-contacts a { color: var(--gold) !important; font-size: 13px; border: none !important; letter-spacing: .5px; }

/* ── HERO SLIDER ───────────────────────────────────────────── */
.hero-slider { position: relative; height: 92vh; min-height: 600px; max-height: 980px; overflow: hidden; }
.slider-track { display: flex; height: 100%; transition: transform .9s cubic-bezier(.4,0,.2,1); }
.slide {
  min-width: 100%; height: 100%;
  background-size: cover; background-position: center;
  background-color: var(--sand-2);
  position: relative; display: flex; align-items: flex-end;
}
.slide-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(10,8,5,.82) 0%, rgba(10,8,5,.3) 55%, rgba(10,8,5,.05) 100%); }
.slide-content { position: relative; z-index: 2; padding: 0 80px 100px; color: white; max-width: 900px; }
.slide-ornament { display: block; font-family: var(--font-sans); font-size: 10px; letter-spacing: 4px; color: var(--gold-2); text-transform: uppercase; margin-bottom: 22px; }
.slide-promo-badge { display: inline-block; border: 1px solid var(--gold-2); color: var(--gold-2); font-size: 9.5px; font-weight: 500; letter-spacing: 2.5px; padding: 7px 20px; margin-bottom: 22px; text-transform: uppercase; }
.slide-title { font-size: clamp(3rem, 7.5vw, 7rem); font-family: var(--font-serif); font-weight: 300; line-height: 1.0; color: white; margin-bottom: 22px; letter-spacing: -0.01em; }
.slide-sub { font-size: 14px; color: rgba(255,255,255,.58); margin-bottom: 48px; line-height: 1.9; font-weight: 300; max-width: 440px; letter-spacing: .3px; }
.slide-btns { display: flex; gap: 16px; flex-wrap: wrap; }
.slider-prev, .slider-next {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 50px; height: 50px;
  border: 1px solid rgba(255,255,255,.18);
  color: rgba(255,255,255,.45);
  display: flex; align-items: center; justify-content: center;
  z-index: 10; transition: all var(--trans);
}
.slider-prev { left: 40px; }
.slider-next { right: 40px; }
.slider-prev:hover, .slider-next:hover { border-color: var(--gold-2); color: var(--gold-2); }
.slider-dots { position: absolute; bottom: 40px; right: 80px; display: flex; gap: 8px; z-index: 10; }
.slider-dot { width: 5px; height: 5px; background: rgba(255,255,255,.25); transition: all var(--trans); cursor: pointer; }
.slider-dot.active { background: var(--gold-2); width: 32px; }

/* ── FEATURES BAR ──────────────────────────────────────────── */
.quick-features { background: var(--sand-1); border-top: 1px solid var(--sand-2); border-bottom: 1px solid var(--sand-2); }
.features-grid { display: grid; grid-template-columns: repeat(4,1fr); }
.feature-item { display: flex; align-items: center; gap: 18px; padding: 34px 36px; border-right: 1px solid var(--sand-2); }
.feature-item:last-child { border-right: none; }
.feature-icon { flex-shrink: 0; color: var(--gold); }
.feature-text strong { display: block; color: var(--dark); font-size: 12px; font-weight: 500; margin-bottom: 3px; }
.feature-text span { color: var(--mid); font-size: 12px; font-weight: 300; }

/* ── SERVICE CARDS ─────────────────────────────────────────── */
.services-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px,1fr)); gap: 1px; background: var(--sand-2); }
.service-card { background: var(--sand-0); overflow: hidden; transition: background var(--trans); }
.service-card:hover { background: var(--sand-1); }
.service-card-img { position: relative; height: 248px; overflow: hidden; background: var(--sand-2); }
.service-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s ease; filter: brightness(.92); }
.service-card:hover .service-card-img img { transform: scale(1.06); filter: brightness(1); }
.service-card-img-placeholder { width: 100%; height: 100%; background: var(--sand-2); display: flex; align-items: center; justify-content: center; color: var(--gold); opacity: .4; }
.tag-bestseller { position: absolute; top: 16px; left: 16px; background: var(--dark); color: var(--sand-0); font-size: 8px; font-weight: 500; letter-spacing: 1.5px; padding: 4px 12px; text-transform: uppercase; }
.tag-sale { position: absolute; top: 16px; right: 16px; border: 1px solid var(--gold); color: var(--gold); font-size: 9px; padding: 3px 9px; }
.service-card-body { padding: 30px 28px; }
.service-card-meta { display: flex; align-items: center; gap: 14px; margin-bottom: 10px; }
.service-card-meta span { font-size: 10px; color: var(--light); letter-spacing: 1px; text-transform: uppercase; display: flex; align-items: center; gap: 5px; }
.service-card-meta span svg { color: var(--gold); }
.service-card-title { font-family: var(--font-serif); font-size: 1.45rem; color: var(--dark); margin-bottom: 10px; cursor: pointer; line-height: 1.3; font-weight: 400; }
.service-card-title:hover { color: var(--gold); }
.service-card-desc { font-size: 13.5px; color: var(--mid); line-height: 1.8; margin-bottom: 22px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; font-weight: 300; }
.service-card-footer { display: flex; align-items: center; justify-content: space-between; padding-top: 18px; border-top: 1px solid var(--sand-2); }
.service-price { display: flex; flex-direction: column; gap: 2px; }
.price-current { font-family: var(--font-serif); font-size: 1.55rem; color: var(--dark); font-weight: 400; }
.price-old { font-size: 11px; color: var(--light); text-decoration: line-through; }
.btn-add-to-cart { background: transparent; border: 1px solid var(--sand-3); color: var(--mid); width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; transition: all var(--trans); }
.btn-add-to-cart:hover { border-color: var(--dark); color: var(--dark); }
.btn-add-to-cart.added { border-color: var(--gold); color: var(--gold); }
.service-skeleton { background: var(--sand-1); height: 390px; position: relative; overflow: hidden; }
.service-skeleton::after { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg,transparent,rgba(255,255,255,.5),transparent); background-size: 200%; animation: shimmer 2s infinite; }
@keyframes shimmer { 0%{background-position:-200% 0} 100%{background-position:200% 0} }

/* ── ABOUT ─────────────────────────────────────────────────── */
.about-home-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: center; }
.about-home-images { position: relative; height: 580px; }
.about-img-main { position: absolute; top: 0; left: 0; width: 80%; height: 84%; overflow: hidden; }
.about-img-main img { width: 100%; height: 100%; object-fit: cover; }
.about-img-secondary { position: absolute; bottom: 0; right: 0; width: 52%; height: 56%; overflow: hidden; border: 8px solid var(--sand-0); }
.about-img-secondary img { width: 100%; height: 100%; object-fit: cover; }
.about-stat-badge { position: absolute; bottom: -1px; right: -1px; background: var(--sand-0); border: 1px solid var(--sand-2); padding: 20px 24px; text-align: center; }
.about-stat-badge strong { font-family: var(--font-serif); font-size: 2.8rem; color: var(--gold); display: block; line-height: 1; font-weight: 400; }
.about-stat-badge span { font-size: 9px; color: var(--light); text-transform: uppercase; letter-spacing: 1.5px; margin-top: 4px; display: block; }
.about-home-text p { color: var(--mid); line-height: 2.0; margin-bottom: 20px; font-size: 15px; font-weight: 300; }
.about-stats { display: flex; gap: 44px; margin: 36px 0; padding: 32px 0; border-top: 1px solid var(--sand-2); border-bottom: 1px solid var(--sand-2); }
.stat strong { display: block; font-family: var(--font-serif); font-size: 2.8rem; color: var(--gold); line-height: 1; font-weight: 400; }
.stat span { font-size: 10px; color: var(--light); margin-top: 8px; display: block; text-transform: uppercase; letter-spacing: 1.5px; line-height: 1.6; }

/* ── MASTERS ───────────────────────────────────────────────── */
.masters-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; background: var(--sand-2); }
.master-card-preview { background: var(--sand-0); overflow: hidden; transition: background var(--trans); }
.master-card-preview:hover { background: var(--sand-1); }
.master-photo-wrap { height: 300px; overflow: hidden; }
.master-photo-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s; filter: saturate(.88); }
.master-card-preview:hover .master-photo-wrap img { transform: scale(1.04); filter: saturate(1); }
.master-info { padding: 22px 20px; }
.master-info h3 { font-family: var(--font-serif); font-size: 1.2rem; color: var(--dark); margin-bottom: 5px; font-weight: 400; }
.master-info p { font-size: 10.5px; color: var(--mid); margin-bottom: 6px; text-transform: uppercase; letter-spacing: .8px; line-height: 1.5; font-weight: 400; }
.master-info span { font-size: 10px; color: var(--gold); text-transform: uppercase; letter-spacing: 1px; }
.masters-full-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--sand-2); }
.master-card-full { background: var(--sand-0); overflow: hidden; }
.master-card-photo { position: relative; height: 400px; overflow: hidden; }
.master-card-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s; filter: saturate(.85); }
.master-card-full:hover .master-card-photo img { transform: scale(1.04); filter: saturate(1); }
.master-card-overlay { position: absolute; inset: 0; background: rgba(20,15,8,.5); display: flex; align-items: flex-end; justify-content: center; padding-bottom: 32px; opacity: 0; transition: opacity var(--trans); }
.master-card-full:hover .master-card-overlay { opacity: 1; }
.master-card-body { padding: 28px; background: var(--sand-0); }
.master-card-body h3 { font-family: var(--font-serif); font-size: 1.5rem; color: var(--dark); margin-bottom: 6px; font-weight: 400; }
.master-name-ru { color: var(--light); font-size: .72em; }
.master-specialty { font-size: 10px; color: var(--gold); font-weight: 500; margin-bottom: 10px; text-transform: uppercase; letter-spacing: 1.5px; }
.master-exp { font-size: 11px; color: var(--light); margin-bottom: 14px; text-transform: uppercase; letter-spacing: 1px; }
.master-bio { font-size: 14px; color: var(--mid); line-height: 1.9; font-weight: 300; }
.masters-booking-cta { text-align: center; padding: 72px 0 0; }
.masters-booking-cta h3 { font-family: var(--font-serif); font-size: 2.4rem; color: var(--dark); margin-bottom: 14px; font-weight: 400; }
.masters-booking-cta p { color: var(--mid); margin-bottom: 32px; font-size: 15px; font-weight: 300; }
.masters-cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── PROMOTIONS ────────────────────────────────────────────── */
.promos-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 1px; background: var(--sand-2); }
.promo-card { background: var(--sand-0); padding: 48px 44px; position: relative; overflow: hidden; }
.promo-card--accent { background: var(--dark); }
.promo-card--accent h3 { color: white; }
.promo-card--accent p { color: rgba(255,255,255,.6); }
.promo-badge { position: absolute; top: 32px; right: 32px; font-family: var(--font-serif); font-size: 3.4rem; color: var(--gold); font-weight: 400; line-height: 1; opacity: .6; }
.promo-card--accent .promo-badge { color: var(--gold-2); opacity: .5; }
.promo-content h3 { font-family: var(--font-serif); font-size: 1.7rem; color: var(--dark); margin-bottom: 14px; font-weight: 400; }
.promo-content p { font-size: 14px; color: var(--mid); line-height: 1.9; margin-bottom: 28px; font-weight: 300; }
.promotions-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--sand-2); }
.promo-full-card { background: var(--sand-0); overflow: hidden; transition: background var(--trans); }
.promo-full-card:hover { background: var(--sand-1); }
.promo-full-img { position: relative; height: 280px; overflow: hidden; background: var(--sand-2); }
.promo-full-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s; }
.promo-full-card:hover .promo-full-img img { transform: scale(1.04); }
.promo-img-bg--1 { background: linear-gradient(135deg,#c8d8b0,#8aae60); }
.promo-img-bg--2 { background: linear-gradient(135deg,#e8c8a0,#c89050); }
.promo-img-bg--3 { background: linear-gradient(135deg,#d0c8b8,#b0a890); }
.promo-img-bg--4 { background: linear-gradient(135deg,#e0d0a8,#c8b070); }
.promo-full-badge { position: absolute; top: 20px; right: 20px; border: 1px solid var(--dark); color: var(--dark); font-size: 18px; font-weight: 400; font-family: var(--font-serif); padding: 8px 16px; background: rgba(250,248,244,.9); }
.promo-full-badge--sm { font-size: 10px; letter-spacing: 1.5px; font-family: var(--font-sans); padding: 7px 14px; }
.promo-full-body { padding: 36px; }
.promo-full-body h2 { font-family: var(--font-serif); font-size: 1.8rem; color: var(--dark); margin-bottom: 8px; font-weight: 400; }
.promo-discount-text { font-size: 10px; color: var(--gold); font-weight: 500; margin-bottom: 14px; text-transform: uppercase; letter-spacing: 2px; }
.promo-full-body p { color: var(--mid); font-size: 14px; line-height: 1.9; margin-bottom: 24px; font-weight: 300; }
.promo-valid { font-size: 11px; color: var(--light); margin-bottom: 20px; }
.promo-note { font-size: 11px; color: var(--gold); margin-bottom: 20px; }

/* ── REVIEWS ───────────────────────────────────────────────── */
.reviews-slider { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--sand-2); }
.review-card { background: var(--sand-0); padding: 44px 40px; }
.review-stars { margin-bottom: 20px; display: flex; gap: 4px; }
.review-star { color: var(--gold); }
.review-text { font-family: var(--font-serif); font-size: 1.1rem; color: var(--dark); line-height: 1.85; font-style: italic; margin-bottom: 24px; font-weight: 400; }
.review-author { font-size: 10px; color: var(--dark); font-weight: 500; letter-spacing: 2px; text-transform: uppercase; }
.review-service { font-size: 10px; color: var(--gold); margin-top: 5px; text-transform: uppercase; letter-spacing: 1.5px; }
.reviews-nav { display: flex; justify-content: center; gap: 12px; margin-top: 40px; }
.reviews-prev, .reviews-next { width: 46px; height: 46px; border: 1px solid var(--sand-3); color: var(--mid); display: flex; align-items: center; justify-content: center; transition: all var(--trans); }
.reviews-prev:hover, .reviews-next:hover { border-color: var(--dark); color: var(--dark); }

/* ── CERT CTA ──────────────────────────────────────────────── */
.cert-cta-bg { background-size: cover; background-position: center; background-color: var(--dark); position: relative; }
.cert-cta-overlay { position: absolute; inset: 0; background: rgba(15,12,7,.82); }
.cert-cta-content { position: relative; z-index: 2; text-align: center; padding: 130px 24px; color: white; }
.cert-cta-content .eyebrow { color: var(--gold-2); }
.cert-cta-content .gold-line { background: var(--gold-2); }
.cert-cta-content h2 { font-family: var(--font-serif); font-size: clamp(2.4rem,5.5vw,4.5rem); color: white; margin-bottom: 20px; font-weight: 300; letter-spacing: -0.01em; }
.cert-cta-content p { color: rgba(255,255,255,.52); font-size: 15px; max-width: 500px; margin: 0 auto 44px; line-height: 2.0; font-weight: 300; }

/* ── FAQ ───────────────────────────────────────────────────── */
.faq-grid { display: grid; grid-template-columns: 1fr 2fr; gap: 96px; align-items: start; }
.faq-left p { color: var(--mid); margin-bottom: 32px; font-size: 15px; line-height: 2.0; font-weight: 300; }
.faq-item { border-bottom: 1px solid var(--sand-2); }
.faq-question { width: 100%; text-align: left; padding: 22px 0; font-size: 15px; font-weight: 400; color: var(--dark); display: flex; justify-content: space-between; align-items: center; font-family: var(--font-sans); cursor: pointer; gap: 20px; }
.faq-question::after { content: '+'; font-size: 24px; color: var(--gold); font-weight: 300; line-height: 1; flex-shrink: 0; transition: transform var(--trans); font-family: var(--font-serif); }
.faq-item.open .faq-question::after { transform: rotate(45deg); }
.faq-answer { font-size: 14px; color: var(--mid); line-height: 2.0; max-height: 0; overflow: hidden; transition: max-height .38s ease, padding .38s ease; font-weight: 300; }
.faq-item.open .faq-answer { max-height: 320px; padding-bottom: 22px; }
.faq-answer a { color: var(--gold); }

/* ── CONTACTS HOME ─────────────────────────────────────────── */
.contacts-home-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 80px; align-items: center; }
.contacts-home-map { height: 460px; overflow: hidden; }
.contacts-home-map iframe { width: 100%; height: 100%; border: 0; filter: saturate(.7) brightness(1.02); }
.contact-detail { display: flex; align-items: flex-start; gap: 18px; margin-bottom: 28px; }
.contact-icon { flex-shrink: 0; color: var(--gold); margin-top: 2px; }
.contact-detail strong { display: block; font-size: 9.5px; font-weight: 600; color: var(--gold); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 5px; }
.contact-detail span, .contact-detail a { font-size: 14px; color: var(--mid); display: block; line-height: 1.7; font-weight: 300; }
.contact-detail a:hover { color: var(--dark); }

/* ── PAGE HERO ─────────────────────────────────────────────── */
.page-hero { position: relative; height: 360px; background-size: cover; background-position: center; background-color: var(--sand-2); display: flex; align-items: flex-end; }
.page-hero--catalog    { background-image: url('/static/images/hero/catalog-hero.jpg'); }
.page-hero--masters    { background-image: url('/static/images/hero/masters-hero.jpg'); }
.page-hero--promotions { background-image: url('/static/images/hero/promos-hero.jpg'); }
.page-hero--about      { background-image: url('/static/images/hero/about-hero.jpg'); }
.page-hero--contacts   { background-image: url('/static/images/hero/contacts-hero.jpg'); }
.page-hero--vip        { background-image: url('/static/images/hero/vip-hero.jpg'); }
.page-hero--gallery    { background-image: url('/static/images/hero/gallery-hero.jpg'); }
.page-hero-overlay { position: absolute; inset: 0; background: linear-gradient(to top,rgba(10,8,5,.85) 0%,rgba(10,8,5,.25) 100%); }
.page-hero-content { position: relative; z-index: 2; color: white; padding-bottom: 52px; }
.breadcrumb { font-size: 9.5px; color: rgba(255,255,255,.35); margin-bottom: 12px; letter-spacing: 2px; text-transform: uppercase; }
.breadcrumb a { color: rgba(255,255,255,.35); }
.breadcrumb a:hover { color: var(--gold-2); }
.page-hero-content h1 { font-family: var(--font-serif); color: white; font-size: clamp(2.4rem,5.5vw,4.2rem); font-weight: 300; margin-bottom: 10px; }
.page-hero-content p { color: rgba(255,255,255,.45); font-size: 10px; letter-spacing: 2.5px; text-transform: uppercase; }

/* ── FOOTER ────────────────────────────────────────────────── */
.site-footer { background: var(--dark); border-top: 1px solid rgba(255,255,255,.06); }
.footer-top { padding: 96px 0 64px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 56px; }
.footer-logo { display: flex; flex-direction: column; margin-bottom: 20px; }
.footer-logo span { font-family: var(--font-serif); font-size: 22px; color: white; letter-spacing: 6px; }
.footer-logo small { font-size: 7.5px; letter-spacing: 3px; color: rgba(255,255,255,.3); text-transform: uppercase; margin-top: 5px; }
.footer-desc { font-size: 13px; line-height: 2.0; color: rgba(255,255,255,.35); margin-bottom: 28px; font-weight: 300; }
.footer-social { display: flex; gap: 10px; }
.social-link { width: 34px; height: 34px; border: 1px solid rgba(255,255,255,.1); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.4) !important; transition: all var(--trans); }
.social-link:hover { border-color: var(--gold-2); color: var(--gold-2) !important; }
.footer-col h4, .footer-col h3 { font-family: var(--font-sans); font-size: 9.5px; font-weight: 500; letter-spacing: 2.5px; text-transform: uppercase; color: rgba(255,255,255,.7); margin-bottom: 24px; }
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul li a { font-size: 13px; color: rgba(255,255,255,.35) !important; font-weight: 300; transition: color var(--trans); }
.footer-col ul li a:hover { color: rgba(255,255,255,.75) !important; }
.footer-contacts p { font-size: 13px; line-height: 1.7; margin-bottom: 12px; color: rgba(255,255,255,.35); font-weight: 300; }
.footer-contacts a { color: rgba(255,255,255,.45) !important; }
.footer-contacts a:hover { color: var(--gold-2) !important; }
.footer-lead h3 { font-family: var(--font-serif); font-size: 1.1rem; color: white; margin-bottom: 10px; font-weight: 400; }
.footer-lead p { font-size: 12.5px; color: rgba(255,255,255,.35); margin-bottom: 18px; line-height: 1.8; font-weight: 300; }
.lead-form { display: flex; flex-direction: column; gap: 10px; }
.lead-form input { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.1); color: white; padding: 12px 16px; font-size: 12.5px; transition: border-color var(--trans); width: 100%; font-family: var(--font-sans); font-weight: 300; }
.lead-form input::placeholder { color: rgba(255,255,255,.2); }
.lead-form input:focus { outline: none; border-color: var(--gold-2); }
.lead-success { border: 1px solid rgba(201,169,90,.25); color: var(--gold-2); padding: 14px 16px; font-size: 12.5px; line-height: 1.7; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.06); padding: 24px 0; }
.footer-bottom-inner { display: flex; flex-direction: column; gap: 6px; }
.footer-bottom p { font-size: 10.5px; color: rgba(255,255,255,.22); font-weight: 300; line-height: 1.7; }
.footer-bottom-links { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; margin-top: 8px; }
.footer-bottom-links a { font-size: 10.5px; color: rgba(255,255,255,.22) !important; }
.footer-bottom-links a:hover { color: var(--gold-2) !important; }

/* ── FLOAT CHAT ────────────────────────────────────────────── */
.float-chat { position: fixed; bottom: 32px; right: 32px; width: 50px; height: 50px; background: var(--dark); border: 1px solid rgba(255,255,255,.1); color: var(--gold-2) !important; display: flex; align-items: center; justify-content: center; z-index: 800; transition: all .2s; }
.float-chat:hover { border-color: var(--gold-2); transform: scale(1.08); }

/* ── PAYMENT PAGES ─────────────────────────────────────────── */
.payment-result { text-align: center; }
.payment-result-card { max-width: 560px; margin: 0 auto; background: var(--sand-1); border: 1px solid var(--sand-2); padding: 72px 56px; }
.payment-result-card--success { border-top: 2px solid var(--gold); }
.payment-result-card--fail { border-top: 2px solid #c05050; }
.payment-result-icon { margin-bottom: 22px; color: var(--gold); display: flex; justify-content: center; }
.payment-result-card h1 { font-family: var(--font-serif); font-size: 2.4rem; color: var(--dark); margin-bottom: 10px; font-weight: 400; }
.payment-result-sub { color: var(--mid); font-size: 14px; margin-bottom: 36px; font-weight: 300; }
.payment-order-info { background: var(--sand-0); padding: 22px; margin-bottom: 26px; text-align: left; border: 1px solid var(--sand-2); }
.order-detail { display: flex; justify-content: space-between; padding: 9px 0; border-bottom: 1px solid var(--sand-2); font-size: 14px; }
.order-detail:last-child { border-bottom: none; }
.order-detail span { color: var(--mid); font-weight: 300; }
.order-detail strong { color: var(--dark); }
.payment-result-message { background: var(--sand-0); padding: 22px; margin-bottom: 36px; text-align: left; border: 1px solid var(--sand-2); }
.payment-result-message p { font-size: 14px; color: var(--mid); line-height: 1.8; margin-bottom: 8px; font-weight: 300; }
.payment-result-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── CATALOG ───────────────────────────────────────────────── */
.catalog-section { padding: 52px 0 88px; }
.catalog-layout { display: grid; grid-template-columns: 220px 1fr; gap: 44px; align-items: start; }
.catalog-sidebar { position: sticky; top: 88px; }
.sidebar-section { background: var(--sand-1); border: 1px solid var(--sand-2); padding: 24px; margin-bottom: 10px; }
.sidebar-section h3 { font-size: 8.5px; font-weight: 600; letter-spacing: 2.5px; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; padding-bottom: 12px; border-bottom: 1px solid var(--sand-2); }
.category-filters { display: flex; flex-direction: column; gap: 2px; }
.cat-btn { text-align: left; padding: 9px 10px; font-size: 12px; color: var(--mid); transition: color var(--trans); font-family: var(--font-sans); font-weight: 400; }
.cat-btn:hover { color: var(--dark); }
.cat-btn.active { color: var(--dark); font-weight: 500; }
.for-whom-filters, .duration-filters { display: flex; flex-direction: column; gap: 9px; }
.for-whom-filters label, .duration-filters label { display: flex; align-items: center; gap: 9px; font-size: 12.5px; color: var(--mid); cursor: pointer; font-weight: 300; }
.for-whom-filters input, .duration-filters input { accent-color: var(--gold); }
.sidebar-cert-cta { background: var(--dark) !important; border-color: transparent !important; text-align: center; }
.sidebar-cert-icon { margin-bottom: 12px; color: var(--gold-2); display: flex; justify-content: center; }
.sidebar-cert-cta h4 { color: white; margin-bottom: 8px; font-size: 11px; text-transform: uppercase; letter-spacing: 1.5px; font-family: var(--font-sans); }
.sidebar-cert-cta p { font-size: 12px; color: rgba(255,255,255,.45); line-height: 1.7; font-weight: 300; }
.catalog-toolbar { display: flex; align-items: center; justify-content: space-between; margin-bottom: 22px; }
.catalog-count { font-size: 11px; color: var(--light); text-transform: uppercase; letter-spacing: 1.5px; }
.catalog-toolbar select { padding: 9px 14px; border: 1px solid var(--sand-2); background: var(--sand-1); color: var(--dark); font-size: 12px; font-family: var(--font-sans); }
.catalog-grid { grid-template-columns: repeat(auto-fill, minmax(240px,1fr)); }
.catalog-empty { text-align: center; padding: 88px 0; color: var(--mid); }
.empty-icon { margin-bottom: 18px; color: var(--gold); opacity: .4; display: flex; justify-content: center; }
.catalog-empty h3 { font-family: var(--font-serif); font-size: 1.8rem; color: var(--dark); margin-bottom: 12px; font-weight: 400; }

/* ── CALLBACK ──────────────────────────────────────────────── */
.callback-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.callback-text p { color: var(--mid); font-size: 15px; line-height: 2.0; margin-bottom: 32px; font-weight: 300; }
.callback-form-wrap { background: var(--sand-1); border: 1px solid var(--sand-2); padding: 40px; }
.callback-form { display: flex; flex-direction: column; gap: 12px; }
.callback-form input { padding: 13px 16px; border: 1px solid var(--sand-2); background: var(--sand-0); color: var(--dark); font-size: 14px; transition: border-color var(--trans); font-family: var(--font-sans); font-weight: 300; }
.callback-form input:focus { outline: none; border-color: var(--dark); }
.callback-form input::placeholder { color: var(--light); }

/* ── SUBSCRIBE ─────────────────────────────────────────────── */
.promo-subscribe-bg { background: var(--dark); position: relative; }
.promo-subscribe-overlay { display: none; }
.promo-subscribe-content { position: relative; z-index: 2; text-align: center; padding: 96px 24px; }
.promo-subscribe-content h2 { font-family: var(--font-serif); font-size: 2.6rem; color: white; margin-bottom: 14px; font-weight: 300; }
.promo-subscribe-content p { color: rgba(255,255,255,.4); margin-bottom: 36px; font-size: 15px; font-weight: 300; }
.subscribe-form { display: flex; gap: 12px; max-width: 500px; margin: 0 auto; flex-wrap: wrap; justify-content: center; }
.subscribe-form input { flex: 1; min-width: 200px; padding: 14px 18px; border: 1px solid rgba(255,255,255,.12); background: rgba(255,255,255,.04); color: white; font-size: 14px; font-family: var(--font-sans); font-weight: 300; }
.subscribe-form input::placeholder { color: rgba(255,255,255,.25); }
.subscribe-form input:focus { outline: none; border-color: var(--gold-2); }

/* ── TOAST ─────────────────────────────────────────────────── */
.toast-container { position: fixed; bottom: 96px; right: 32px; z-index: 2000; display: flex; flex-direction: column; gap: 10px; pointer-events: none; }
.toast { background: var(--sand-0); border: 1px solid var(--sand-2); color: var(--dark); padding: 15px 22px; font-size: 13px; border-left: 2px solid var(--gold); animation: toastIn .3s ease, toastOut .3s ease 2.7s forwards; pointer-events: auto; max-width: 320px; font-weight: 300; line-height: 1.5; box-shadow: 0 4px 24px rgba(0,0,0,.1); }
.toast--success { border-left-color: #6aaa7a; }
.toast--error { border-left-color: #c07070; }
@keyframes toastIn { from{opacity:0;transform:translateX(16px)} to{opacity:1;transform:translateX(0)} }
@keyframes toastOut { from{opacity:1;transform:translateX(0)} to{opacity:0;transform:translateX(16px)} }

/* ── VIP ───────────────────────────────────────────────────── */
.vip-features { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--sand-2); margin: 52px 0; }
.vip-feature { background: var(--sand-0); padding: 44px 40px; text-align: center; }
.vip-feature-icon { margin: 0 auto 18px; color: var(--gold); display: flex; justify-content: center; }
.vip-feature h3 { font-family: var(--font-serif); font-size: 1.3rem; color: var(--dark); margin-bottom: 12px; font-weight: 400; }
.vip-feature p { font-size: 14px; color: var(--mid); line-height: 1.9; font-weight: 300; }

/* ── GALLERY ───────────────────────────────────────────────── */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(280px,1fr)); gap: 1px; background: var(--sand-2); }
.gallery-item { overflow: hidden; cursor: pointer; aspect-ratio: 4/3; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s; filter: saturate(.85); }
.gallery-item:hover img { transform: scale(1.06); filter: saturate(1); }
.lightbox { display: none; position: fixed; inset: 0; background: rgba(5,4,2,.96); z-index: 2000; align-items: center; justify-content: center; }
.lightbox.active { display: flex; }
.lightbox img { max-width: 90vw; max-height: 90vh; }
.lightbox-close { position: absolute; top: 28px; right: 28px; color: rgba(255,255,255,.4); font-size: 20px; cursor: pointer; transition: color var(--trans); }
.lightbox-close:hover { color: var(--gold-2); }

/* ── CERT CHECK ────────────────────────────────────────────── */
.cert-check-result { border: 1px solid var(--sand-2); padding: 28px; margin-top: 18px; background: var(--sand-1); }
.cert-check-result--valid { border-color: rgba(100,160,110,.4); }
.cert-check-result--invalid { border-color: rgba(180,80,80,.3); }

/* ── FORM COMMON ───────────────────────────────────────────── */
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 9.5px; font-weight: 600; color: var(--light); letter-spacing: 2px; text-transform: uppercase; }
.form-group input, .form-group textarea, .form-group select { padding: 12px 16px; border: 1px solid var(--sand-2); background: var(--sand-0); color: var(--dark); font-size: 14px; transition: border-color var(--trans); width: 100%; font-family: var(--font-sans); font-weight: 300; }
.form-group input:focus, .form-group textarea:focus { outline: none; border-color: var(--dark); }
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--light); }

/* ── RESPONSIVE ────────────────────────────────────────────── */
@media(max-width:1100px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 44px; }
  .about-home-grid { gap: 56px; }
  .masters-full-grid { grid-template-columns: repeat(2,1fr); }
  .catalog-layout { grid-template-columns: 200px 1fr; gap: 28px; }
}
@media(max-width:960px) {
  .main-nav { display: none; }
  .burger-btn { display: flex; }
  .header-phone { display: none; }
  .about-home-grid { grid-template-columns: 1fr; }
  .about-home-images { display: none; }
  .faq-grid { grid-template-columns: 1fr; gap: 44px; }
  .features-grid { grid-template-columns: repeat(2,1fr); }
  .masters-grid { grid-template-columns: repeat(2,1fr); }
  .promos-grid { grid-template-columns: 1fr; }
  .contacts-home-grid { grid-template-columns: 1fr; }
  .reviews-slider { grid-template-columns: 1fr; }
  .catalog-layout { grid-template-columns: 1fr; }
  .catalog-sidebar { position: static; }
  .category-filters { flex-direction: row; flex-wrap: wrap; gap: 6px; }
  .masters-full-grid { grid-template-columns: 1fr; }
  .promotions-grid { grid-template-columns: 1fr; }
  .callback-grid { grid-template-columns: 1fr; }
  .vip-features { grid-template-columns: 1fr 1fr; }
}
@media(max-width:640px) {
  .slide-content { padding: 0 24px 64px; }
  .slide-title { font-size: 3rem; }
  .slider-prev, .slider-next { display: none; }
  .slider-dots { right: 50%; transform: translateX(50%); }
  .hero-slider { height: 82vh; }
  .features-grid { grid-template-columns: 1fr; }
  .feature-item { border-right: none; border-bottom: 1px solid var(--sand-2); }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .about-stats { flex-wrap: wrap; gap: 24px; }
  .slide-btns { flex-direction: column; gap: 10px; }
  .section { padding: 64px 0; }
  .vip-features { grid-template-columns: 1fr; }
  .cert-cta-content { padding: 88px 24px; }
}
.hidden { display: none !important; }
.text-gold { color: var(--gold); }
.text-center { text-align: center; }
