/* ===== BLAGO SPA & BEAUTY — MAIN STYLES ===== */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;1,400;1,500&family=Raleway:wght@300;400;500;600&display=swap');

:root {
  --gold: #C49A2A;
  --gold-light: #D4AE4A;
  --gold-dark: #9E7B1A;
  --gold-pale: #F0E0A0;
  --bg: #FAF6EF;
  --bg-warm: #F5EFE4;
  --bg-dark: #1A1208;
  --text: #2C1A0A;
  --text-muted: #6B5B45;
  --white: #FFFDF8;
  --border: #E8DCC8;
  --border-gold: rgba(196,154,42,0.3);
}

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

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Raleway', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
  font-variant-numeric: lining-nums;
}

img { max-width: 100%; display: block; }

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s ease, transform 0.55s ease;
  transition-delay: calc(var(--i, 0) * 80ms);
}
.reveal.in {
  opacity: 1;
  transform: none;
}
.no-reveal .reveal { opacity: 1; transform: none; transition: none; transition-delay: 0s; }

/* ===== PAGE TRANSITIONS ===== */
@view-transition { navigation: auto; }
::view-transition-old(root) { animation: .25s ease both vt-out; }
::view-transition-new(root) { animation: .25s ease both vt-in; }
@keyframes vt-out { to   { opacity: 0; transform: translateY(-6px); } }
@keyframes vt-in  { from { opacity: 0; transform: translateY(6px);  } }


/* ===== NAVIGATION ===== */
.nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(250,246,239,0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  padding: 0 2rem;
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.nav-logo img {
  width: 52px;
  height: 52px;
  object-fit: contain;
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.nav-logo-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--gold-dark);
  letter-spacing: 0.04em;
}

.nav-logo-sub {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 500;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  list-style: none;
}

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  transition: color 0.2s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.25s;
}

.nav-links a:hover,
.nav-links a.active { color: var(--gold-dark); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-cta {
  background: var(--gold);
  color: var(--white) !important;
  padding: 0.6rem 1.4rem;
  font-size: 0.78rem !important;
  letter-spacing: 0.12em !important;
  transition: background 0.2s !important;
}

.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--gold-dark) !important; color: var(--white) !important; }

.nav-lang { list-style: none; }
.nav-lang-bar { display: none !important; }
.nav-sub-toggle { display: none; }
.nav-dropdown-head { display: contents; }
@media (max-width: 768px) {
  .nav-lang-bar { display: flex !important; gap: 2px; }
  .nav-lang-bar .lang-btn { font-size: 0.7rem; padding: 0.25rem 0.5rem; min-width: 28px; }
  .nav-lang-desktop { display: none; }
  .nav-logo img { width: 36px; height: 36px; }
  .nav-logo-name { font-size: 1rem; }
  .nav-logo-sub { font-size: 0.55rem; }
  .nav-logo { gap: 0.5rem; }
  .nav { padding: 0 1rem; }
  .nav-links { right: 0; }
  /* Accordion for services dropdown on mobile */
  .nav-dropdown-head { display: flex; align-items: center; justify-content: flex-start; gap: 6px; width: 100%; }
  .nav-sub-toggle { display: flex; background: none; border: none; cursor: pointer; color: var(--text-muted); padding: 4px; line-height: 1; }
  .nav-sub-toggle svg { transition: transform 0.22s ease; display: block; }
  .nav-has-dropdown.submenu-open .nav-sub-toggle svg { transform: rotate(180deg); }
  .nav-has-dropdown .nav-dropdown {
    position: static !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    box-shadow: none !important;
    border: none !important;
    background: transparent !important;
    padding: 0.25rem 0 0 1rem !important;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }
  .nav-has-dropdown.submenu-open .nav-dropdown { max-height: 300px; }
  .nav-has-dropdown .nav-dropdown li a {
    color: var(--text-muted);
    font-size: 0.8rem;
    padding: 0.4rem 0;
    text-transform: none;
    letter-spacing: 0.03em;
    background: transparent !important;
  }
  .nav-has-dropdown .nav-dropdown li a:hover { background: transparent !important; }
}

.nav-phone {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1rem;
  border: 1.5px solid var(--gold);
  border-radius: 50px;
  color: var(--text);
  text-decoration: none;
  font-family: 'Raleway', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  white-space: nowrap;
  transition: background 0.2s, color 0.2s;
}
.nav-phone svg { flex-shrink: 0; color: var(--gold); }
.nav-phone:hover { background: var(--gold); color: var(--white); }
.nav-phone:hover svg { color: var(--white); }

/* Nav dropdown */
.nav-has-dropdown { position: relative; }
.nav-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  background: var(--bg-dark);
  border: 1px solid rgba(196,154,42,0.2);
  border-radius: 10px;
  padding: 0.5rem 0;
  min-width: 190px;
  list-style: none;
  z-index: 800;
  box-shadow: 0 16px 40px rgba(0,0,0,0.28);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.22s ease, visibility 0.22s ease, transform 0.22s ease;
}
.nav-dropdown li a {
  display: block;
  padding: 0.7rem 1.4rem;
  color: rgba(255,253,248,0.75);
  font-family: 'Raleway', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.15s, background 0.15s;
}
.nav-dropdown li a:hover { color: var(--gold-light); background: rgba(196,154,42,0.08); }
.nav-has-dropdown:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Category cards */
.cat-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(340px, 100%), 1fr));
  gap: 1.5rem;
  max-width: 100%;
}
.cat-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  display: block;
  text-decoration: none;
  min-height: 320px;
  background: var(--bg-dark);
}
.cat-card-img { width: 100%; height: 100%; position: absolute; inset: 0; }
.cat-card-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.cat-card-placeholder { width: 100%; height: 100%; background: linear-gradient(135deg, #2a2015, #3d2e10); }
.cat-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,8,4,0.82) 0%, rgba(10,8,4,0.2) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
  transition: background 0.3s;
}
.cat-card:hover .cat-card-overlay { background: linear-gradient(to top, rgba(10,8,4,0.9) 0%, rgba(10,8,4,0.4) 60%, transparent 100%); }
.cat-card-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 400;
  color: var(--white);
  letter-spacing: 0.05em;
  margin: 0 0 0.4rem;
}
.cat-card-count {
  font-family: 'Raleway', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-light);
}

/* Breadcrumb */
.svc-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Raleway', sans-serif;
  font-size: 0.85rem;
  margin-bottom: 1.5rem;
}
.svc-breadcrumb a { color: var(--gold); text-decoration: none; }
.svc-breadcrumb a:hover { text-decoration: underline; }
.svc-breadcrumb-sep { color: var(--text-muted); }

@media (max-width: 768px) {
  .cat-cards-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .cat-cards-grid .cat-card { min-height: 180px; aspect-ratio: 3/2; }
}
@media (max-width: 480px) {
  .cat-cards-grid { grid-template-columns: 1fr; width: 100%; max-width: 100%; }
  .cat-cards-grid .cat-card { min-height: 150px; aspect-ratio: 16/6; width: 100%; max-width: 100%; }
  .cat-card-title { font-size: 1rem; }
  .cat-card-count { font-size: 0.72rem; }
}

.lang-switch {
  display: flex;
  align-items: center;
  gap: 2px;
  background: rgba(44,26,10,0.06);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 3px;
}

.lang-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Raleway', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  padding: 0.3rem 0.55rem;
  border-radius: 4px;
  transition: background 0.15s, color 0.15s;
  line-height: 1;
}

.lang-btn:hover { color: var(--text); }
.lang-btn.active { background: var(--gold); color: #fff; border: none; }

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.nav-burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  transition: 0.3s;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--bg-dark);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1A1208 0%, #2C1F08 40%, #1A1208 100%);
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse 70% 60% at 80% 50%, rgba(196,154,42,0.08) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 20% 80%, rgba(196,154,42,0.05) 0%, transparent 60%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  width: 100%;
}

.hero-text { }

.hero-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 30px;
  height: 1px;
  background: var(--gold);
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 4vw, 4rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1.5rem;
  text-wrap: balance;
}

.hero-title em {
  font-style: italic;
  color: var(--gold-light);
}

.hero-desc {
  color: rgba(255,253,248,0.65);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 2.5rem;
  max-width: 44ch;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
}

.hero-socials {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-top: 2rem;
}
.hero-social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(196,154,42,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,253,248,0.6);
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.hero-social-link:hover {
  border-color: var(--gold);
  color: var(--gold-light);
  background: rgba(196,154,42,0.08);
}

.btn-gold {
  background: var(--gold);
  color: var(--white);
  padding: 0.6rem 1.6rem;
  border-radius: 50px;
  border: none;
  outline: none;
  cursor: pointer;
  font-family: 'Raleway', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-gold:hover { background: var(--gold-dark); transform: translateY(-1px); }

.btn-outline {
  border: 1px solid rgba(255,253,248,0.3);
  color: rgba(255,253,248,0.8);
  padding: 0.9rem 2.2rem;
  font-family: 'Raleway', sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
  display: inline-block;
}

.btn-outline:hover { border-color: var(--gold); color: var(--gold-light); }

.btn-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: rgba(255,253,248,0.8);
  font-family: 'Raleway', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.2s;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.btn-arrow svg {
  flex-shrink: 0;
  transition: transform 0.28s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.btn-arrow:hover { color: rgba(255,253,248,1); }
.btn-arrow:hover svg { transform: translateX(6px); }

.btn-arrow-gold {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--gold);
  font-family: 'Raleway', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.2s;
}

.btn-arrow-gold svg {
  flex-shrink: 0;
  transition: transform 0.28s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.btn-arrow-gold:hover { color: var(--gold-dark); }
.btn-arrow-gold:hover svg { transform: translateX(6px); }

.hero-stats {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 3rem;
  border: 1px solid var(--border-gold);
  position: relative;
}

.hero-stats::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 2rem;
  width: 3rem;
  height: 2px;
  background: var(--gold);
}

.hero-stat { }

.hero-stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 400;
  color: var(--gold-light);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.hero-stat-label {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,253,248,0.45);
  margin-top: 0.25rem;
}

.hero-divider {
  height: 1px;
  background: var(--border-gold);
}

/* ===== MARQUEE ===== */
.marquee {
  background: var(--gold);
  padding: 0.75rem 0;
  overflow: hidden;
  white-space: nowrap;
}

.marquee-inner {
  display: flex;
  width: max-content;
  flex-wrap: nowrap;
  align-items: center;
  gap: 0;
  will-change: transform;
  backface-visibility: hidden;
}

.marquee-item {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,253,248,0.9);
  font-weight: 500;
  padding: 0 2rem;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s;
}
.marquee-item:hover { color: #fff; }

.marquee-sep {
  color: rgba(255,253,248,0.4);
  line-height: 1;
  display: flex;
  align-items: center;
}


/* ===== SECTIONS ===== */
.section {
  padding: 5rem 2rem;
  background: var(--bg);
}

.section-warm { background: var(--bg-warm); }
.section-dark { background: var(--bg-dark) !important; }

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-head {
  margin-bottom: 3.5rem;
}

.section-head.centered { text-align: center; }

.eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--gold);
}

.section-head.centered .eyebrow { justify-content: center; }
.section-head.centered .eyebrow::before { display: none; }

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 400;
  line-height: 1.2;
  text-wrap: balance;
}

.section-dark .section-title { color: var(--white); }

/* ===== SERVICES GRID ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.service-card {
  background: var(--white);
  padding: 2.2rem 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  cursor: pointer;
  transition: background 0.2s;
  position: relative;
  overflow: hidden;
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.35s ease;
}

.service-card:hover { background: var(--bg-warm); }
.service-card:hover::after { width: 100%; }

.service-num {
  font-family: 'Playfair Display', serif;
  font-size: 0.78rem;
  color: var(--gold);
  letter-spacing: 0.06em;
}

.service-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 400;
  line-height: 1.25;
  color: var(--text);
}

.service-desc {
  color: var(--text-muted);
  font-size: 0.85rem;
  line-height: 1.7;
  flex: 1;
}

.service-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 0.85rem;
  border-top: 1px solid var(--border);
  margin-top: auto;
}

.service-duration {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.service-price {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: var(--gold-dark);
  font-variant-numeric: tabular-nums;
}

/* ===== WHY US ===== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.why-item {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.why-icon {
  width: 64px;
  height: 64px;
  border: 1px solid var(--gold);
  border-radius: 16px;
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.why-title {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: var(--white);
}

.why-text {
  font-size: 0.82rem;
  color: rgba(255,253,248,0.5);
  line-height: 1.65;
}

/* ===== GALLERY ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 280px 220px;
  gap: 6px;
}

.gallery-cell {
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.gallery-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-cell:hover img { transform: scale(1.05); }

.gallery-cell.tall { grid-row: span 2; }
.gallery-cell.wide { grid-column: span 2; }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,18,8,0.6) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
  display: flex;
  align-items: flex-end;
  padding: 1.25rem;
}

.gallery-cell:hover .gallery-overlay { opacity: 1; }

.gallery-caption {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,253,248,0.8);
}

/* ===== REVIEWS ===== */
.reviews-section { background: var(--bg-warm); }

.reviews-slider-wrap { overflow: hidden; margin-top: 2.5rem; }

.reviews-track {
  display: flex;
  gap: 1.5rem;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.review-card-v2 {
  flex: 0 0 calc(33.333% - 1rem);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  height: 280px;
  overflow: hidden;
}

.review-card-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold);
  color: #fff;
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.review-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
  min-width: 0;
}

.review-author-name {
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.review-ago {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.review-google-badge {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.7rem;
  color: var(--text-muted);
  flex-shrink: 0;
}

.review-stars-v2 {
  color: #F4B400;
  font-size: 0.95rem;
  letter-spacing: 1px;
}

.review-text-v2 {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.75;
}

.reviews-controls {
  position: relative;
  display: flex;
  align-items: center;
  margin-top: 2rem;
}
.reviews-nav { flex-shrink: 0; }
.reviews-dots {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.reviews-nav { display: flex; gap: 0.5rem; }

.rev-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--border-gold);
  background: none;
  color: var(--text-muted);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.rev-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(196,154,42,0.06);
}

.reviews-dots { display: flex; gap: 6px; align-items: center; flex-wrap: wrap; justify-content: center; }

@media (max-width: 768px) {
  .reviews-controls { flex-direction: column; align-items: center; gap: 1rem; }
  .reviews-dots { position: static; transform: none; }
  .rev-dot { width: 7px; height: 7px; }
  .reviews-nav { display: none; }
}

.rev-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  padding: 0;
}
.rev-dot.active {
  background: var(--gold);
  transform: scale(1.35);
}

/* ===== SERVICE DETAIL PAGE ===== */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}
.breadcrumb a { color: var(--text-muted); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--gold); }

/* ===== SERVICE DETAIL — SPLIT (Section 1) ===== */
.svc-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
}

.svc-split-photo {
  position: relative;
  overflow: hidden;
}
.svc-split-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.svc-split-photo-placeholder {
  width: 100%;
  height: 100%;
  min-height: 500px;
  background: var(--bg-dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}
.svc-split-photo-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 60%, rgba(196,154,42,0.13) 0%, transparent 60%),
    radial-gradient(ellipse at 75% 25%, rgba(196,154,42,0.07) 0%, transparent 50%);
}

.svc-split-info {
  padding: 5rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--bg);
}

.svc-split-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--text);
  margin: 0.5rem 0 1.5rem;
}

.svc-split-desc {
  color: var(--text-muted);
  line-height: 1.85;
  font-size: 0.97rem;
  margin-bottom: 2rem;
}

.svc-split-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
  flex-wrap: nowrap;
}

.svc-meta-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--bg-dark);
  border-radius: 50px;
  padding: 0.55rem 1.1rem 0.55rem 0.55rem;
}
.svc-meta-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
}
.svc-meta-text {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--gold-light);
  white-space: nowrap;
  letter-spacing: 0.02em;
}
.svc-meta-badge--price .svc-meta-icon {
  background: var(--gold-dark);
}
.svc-meta-price-val {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--gold-light);
  font-variant-numeric: lining-nums;
  white-space: nowrap;
}

.svc-split-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ===== SERVICE DETAIL — FEATURES STRIP (Section 2) ===== */
.svc-features-strip {
  background: var(--bg-dark);
  padding: 4rem 2rem;
  position: relative;
  overflow: hidden;
}
.svc-features-title {
  text-align: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 400;
  color: rgba(255,253,248,0.5);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 2.5rem;
  position: relative;
}
.svc-features-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 100%, rgba(196,154,42,0.08) 0%, transparent 60%);
  pointer-events: none;
}
.svc-features-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  position: relative;
}
.svc-feature-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.6rem 1.4rem;
  border: 1px solid rgba(196,154,42,0.45);
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: rgba(255,253,248,0.88);
  background: rgba(196,154,42,0.12);
  text-transform: uppercase;
  transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.15s;
}
.svc-feature-tag:hover {
  background: rgba(196,154,42,0.22);
  border-color: rgba(196,154,42,0.65);
  color: #fff;
  transform: translateY(-1px);
}

/* ===== SERVICE DETAIL — ALTERNATING BLOCKS ===== */
.svc-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 420px;
}
.svc-block--reverse {
  direction: rtl;
}
.svc-block--reverse > * {
  direction: ltr;
}
.svc-block-photo {
  overflow: hidden;
  background: var(--bg-dark);
}
.svc-block-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.svc-block-photo-placeholder {
  width: 100%;
  height: 100%;
  min-height: 340px;
  background: linear-gradient(135deg, #1a1208 0%, #2c1a0a 100%);
}
.svc-block-text {
  padding: 4rem 3.5rem;
  background: var(--bg-warm);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.2rem;
}
.svc-block-num {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: rgba(196,154,42,0.18);
  line-height: 1;
  letter-spacing: -0.02em;
}
.svc-block-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.7rem;
  color: var(--text-dark);
  font-weight: 700;
  line-height: 1.25;
  margin: 0;
}
.svc-block-body {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.75;
}

/* ===== SERVICE DETAIL — BOTTOM CTA (Block 5) ===== */
.svc-bottom-cta {
  background: var(--bg-dark);
  padding: 6rem 2rem;
  text-align: center;
}
.svc-bottom-cta-inner {
  max-width: 560px;
  margin: 0 auto;
}
.svc-bottom-cta-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 400;
  color: #fff;
  margin: 0 0 1rem;
  line-height: 1.2;
}
.svc-bottom-cta-sub {
  color: rgba(255,255,255,0.6);
  font-size: 1rem;
  margin-bottom: 2rem;
  line-height: 1.6;
}

/* ===== SERVICE DETAIL — TEXT+PHOTO (Section 3) ===== */
.svc-detail-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 480px;
  background: var(--bg-warm);
}

.svc-detail-text {
  padding: 5rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.svc-detail-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 400;
  color: var(--text);
  margin: 0.5rem 0 1.5rem;
  line-height: 1.25;
}
.svc-detail-body {
  color: var(--text-muted);
  line-height: 1.9;
  font-size: 0.97rem;
  margin-bottom: 2.5rem;
}
.svc-detail-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.svc-detail-photo-right {
  position: relative;
  overflow: hidden;
}
.svc-detail-photo-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.svc-detail-photo-placeholder {
  width: 100%;
  height: 100%;
  min-height: 400px;
  background: linear-gradient(135deg, var(--bg-warm) 0%, var(--bg) 100%);
}

.btn-outline-gold {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.75rem 1.5rem;
  border: 1.5px solid var(--gold);
  color: var(--gold-dark);
  font-family: 'Raleway', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  transition: background 0.2s, color 0.2s;
}
.btn-outline-gold:hover {
  background: var(--gold);
  color: #fff;
}

.service-card-link { text-decoration: none; color: inherit; }

/* ===== BOOKING SECTION ===== */
.booking-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 600px;
}

.booking-left {
  background: var(--bg-dark);
  padding: 4rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2rem;
  position: relative;
  overflow: hidden;
}
.booking-cta-btn { align-self: flex-start; margin-top: 0; }
@media (max-width: 768px) {
  .booking-cta-btn { align-self: center; }
}

.booking-left::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196,154,42,0.08), transparent 70%);
}

.booking-left-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1.15;
}

.booking-left-title em { font-style: italic; color: var(--gold-light); }

.booking-left-sub {
  color: rgba(255,253,248,0.55);
  font-size: 0.9rem;
  line-height: 1.8;
}

.booking-info {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.booking-info-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.85rem;
  color: rgba(255,253,248,0.6);
  font-family: 'Raleway', sans-serif;
  font-variant-numeric: lining-nums;
}

.booking-info-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

.booking-right {
  background: var(--bg-warm);
  padding: 4rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.5rem;
}

.booking-form-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 400;
}

/* ===== FORMS ===== */
.form-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.form-label {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 500;
}

.form-input, .form-select {
  background: var(--white);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 0.75rem 1rem;
  font-family: 'Raleway', sans-serif;
  font-size: 0.9rem;
  font-weight: 400;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
  appearance: none;
}

.form-input::placeholder { color: var(--border); }
.form-input:focus, .form-select:focus { border-color: var(--gold); }
textarea.form-input { resize: vertical; min-height: 80px; }
input[name="phone"].form-input { font-family: system-ui, -apple-system, sans-serif; letter-spacing: 0.04em; }

.btn-submit {
  background: var(--gold);
  color: var(--white);
  padding: 1rem 2rem;
  font-family: 'Raleway', sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
  width: 100%;
}

.btn-submit:hover { background: var(--gold-dark); }

.form-errors {
  color: #c0392b;
  font-size: 0.78rem;
  margin-top: 0.25rem;
}

/* ===== MESSAGES ===== */
.messages {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 2rem 0;
}

.message {
  padding: 1rem 1.5rem;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.message-success {
  background: rgba(196,154,42,0.1);
  border: 1px solid var(--border-gold);
  color: var(--gold-dark);
}

.message-error {
  background: rgba(192,57,43,0.08);
  border: 1px solid rgba(192,57,43,0.2);
  color: #c0392b;
}

/* ===== ABOUT PAGE ===== */
.about-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
@media (max-width: 768px) {
  .about-story-grid { grid-template-columns: 1fr; gap: 2rem; }
  .about-story-visual { aspect-ratio: unset; padding: 2rem; min-height: 200px; }
}

.about-story-visual {
  background: var(--bg-warm);
  aspect-ratio: 4/3;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  border-radius: 16px;
  border: 1px solid var(--border);
  padding: 2.5rem;
}
.about-story-logo-img {
  width: 72px;
  height: 72px;
  object-fit: contain;
  border-radius: 50%;
  flex-shrink: 0;
}
.about-story-brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--text);
  line-height: 1.1;
  letter-spacing: 0.02em;
}
.about-story-brand-sub {
  font-family: 'Raleway', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 0.2rem;
}

.about-hero {
  background: var(--bg-dark);
  padding: 5rem 2rem;
  text-align: center;
}

.about-hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 400;
  color: var(--white);
  margin-bottom: 1.25rem;
}

.about-hero-sub {
  color: rgba(255,253,248,0.55);
  max-width: 50ch;
  margin: 0 auto;
  font-size: 1rem;
  line-height: 1.8;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: var(--border);
}

.value-card {
  background: var(--white);
  padding: 2.5rem 2rem;
}

.value-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  color: var(--gold-pale);
  line-height: 1;
  margin-bottom: 1rem;
}

.value-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
}

.value-text {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.7;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.team-card { }

.team-photo {
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--bg-warm);
  margin-bottom: 1rem;
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.team-role {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ===== CONTACTS PAGE ===== */
.contacts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-info { display: flex; flex-direction: column; gap: 2rem; }

.contact-block { }

.contact-label {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.contact-value {
  font-family: 'Raleway', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-muted);
  letter-spacing: 0.01em;
}

.contact-value a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
  font-family: 'Raleway', sans-serif;
  font-variant-numeric: lining-nums;
}

.contact-value a:hover { color: var(--gold); }

.map-embed {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  min-height: 420px;
}

.map-placeholder {
  aspect-ratio: 4/3;
  background: var(--bg-warm);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  background: var(--bg-dark);
  padding: 4rem 2rem;
  text-align: center;
}

.page-hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.page-hero-sub {
  color: rgba(255,253,248,0.5);
  font-size: 0.9rem;
  letter-spacing: 0.06em;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--bg-dark);
  border-top: 1px solid var(--border-gold);
  padding: 3rem 2rem 2rem;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--border-gold);
}
.footer-col-group { display: contents; }
.footer-nav-wrap { display: contents; }
.footer-social-mobile { display: none; }
.footer-legal-row { display: flex; gap: 1.25rem; align-items: center; flex-wrap: wrap; justify-content: center; }

.footer-brand { }

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  text-decoration: none;
}

.footer-logo img { width: 44px; height: 44px; object-fit: contain; }

.footer-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.footer-logo-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: var(--gold-light);
}
.footer-logo-sub {
  font-family: 'Raleway', sans-serif;
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,253,248,0.45);
}

.footer-tagline {
  color: rgba(255,253,248,0.4);
  font-size: 0.82rem;
  line-height: 1.7;
  max-width: 28ch;
}

.footer-col-title {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
  font-weight: 500;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-links li {
  color: rgba(255,253,248,0.45);
  font-size: 0.85rem;
  font-family: 'Raleway', sans-serif;
}

.footer-links a {
  color: rgba(255,253,248,0.45);
  text-decoration: none;
  font-size: 0.85rem;
  font-family: 'Raleway', sans-serif;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--gold-light); }

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 1.5rem;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  font-size: 0.75rem;
  color: rgba(255,253,248,0.6);
}

.footer-bottom > :last-child {
  text-align: right;
}

.footer-credit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: rgba(255,253,248,0.6);
  text-decoration: none;
  font-family: 'Raleway', sans-serif;
  white-space: nowrap;
  width: 100%;
}

.footer-credit:hover { color: rgba(255,253,248,0.9); }


/* ===== SOCIAL ===== */
.social-links {
  display: flex;
  gap: 0.75rem;
}

.social-link {
  width: 36px;
  height: 36px;
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.85rem;
  transition: border-color 0.2s, color 0.2s;
}

.social-link:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.footer .social-link {
  color: rgba(255,253,248,0.5);
}

.footer .social-link:hover {
  color: var(--gold-light);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .hero-content { grid-template-columns: 1fr; gap: 3rem; }
  .hero-stats { flex-direction: row; justify-content: space-around; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .contacts-grid { grid-template-columns: 1fr; }
  .svc-split-info { padding: 3.5rem 2.5rem; }
  .svc-detail-section { grid-template-columns: 1fr; }
  .svc-detail-photo-right { order: -1; min-height: 280px; }
  .svc-detail-text { padding: 3rem 2rem; }
  .svc-features-inner { gap: 2rem; }
  .svc-block { grid-template-columns: 1fr; direction: ltr; }
  .svc-block-photo { min-height: 260px; }
  .svc-block-text { padding: 2.5rem 1.5rem; }
}

@media (max-width: 768px) {
  .nav-links { flex-direction: column; align-items: flex-start; position: absolute; top: 72px; left: auto; right: 0; min-width: 200px; max-width: calc(100vw - 1rem); background: var(--bg); border: 1px solid var(--border); border-top: none; border-radius: 0 0 0 10px; padding: 1.25rem 1.5rem; gap: 0.75rem; z-index: 999; box-shadow: 0 8px 24px rgba(0,0,0,0.1); opacity: 0; visibility: hidden; transform: translateY(-10px); transition: opacity 0.28s ease, transform 0.28s ease, visibility 0s linear 0.28s; pointer-events: none; }
  .nav-links.open { opacity: 1; visibility: visible; transform: translateY(0); transition: opacity 0.28s ease, transform 0.28s ease, visibility 0s linear 0s; pointer-events: auto; }
  .nav-burger { display: flex; }
  .nav-burger span { transition: transform 0.22s ease, opacity 0.22s ease; transform-origin: center; }
  .nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
  .nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .nav-phone { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .gallery-cell.tall, .gallery-cell.wide { grid-row: span 1; grid-column: span 1; }
  .review-card-v2 { flex: 0 0 100%; }
  .booking-wrap { grid-template-columns: 1fr; }
  .booking-left, .booking-right { padding: 3rem 1.5rem; }
  .values-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 1rem; padding-bottom: 1.25rem; }
  .footer-col-group { display: flex; gap: 2rem; }
  .footer-col-group .footer-links { margin-top: 0.35rem; }
  .footer-col-group .footer-links li { margin-bottom: 0.15rem; }
  .footer-col-group .footer-links a { font-size: 0.82rem; }
  .footer-col-group .footer-col-title { margin-bottom: 0.4rem; }
  .footer { padding-left: 1rem; padding-right: 1rem; }
  .footer-social-desktop { display: none !important; }
  .footer-social-mobile { display: flex; flex-wrap: wrap; width: calc(2 * 36px + 0.75rem); margin-bottom: 0.5rem; }
  .footer-nav-wrap { display: flex; align-items: flex-start; justify-content: space-between; }
  .footer-social-mobile { margin-left: auto; margin-right: 1.5rem; display: flex; flex-wrap: wrap; gap: 0.4rem; width: calc(2 * 54px + 0.4rem); align-content: flex-start; }
  .footer-social-mobile .social-link { width: 54px; height: 54px; }
  .footer-bottom { display: flex; flex-direction: column; align-items: center; gap: 0.65rem; text-align: center; padding-top: 1.25rem; }
  .footer-legal-row { display: flex; gap: 0.6rem; align-items: center; flex-wrap: nowrap; }
  .footer-legal-row a, .footer-legal-row span { font-size: 11px !important; }
  .footer-legal-sep { display: none; }
  .footer-bottom > :last-child { text-align: center; }
  .footer-credit { white-space: normal; justify-content: center; flex-wrap: wrap; font-size: 0.75rem; }
  .footer-credit svg { width: 100px; height: 30px; }
  .form-row { grid-template-columns: 1fr; }
  .section { padding: 3.5rem 1.25rem; }
  .page-hero, .about-hero { padding: 3rem 1.25rem; }
  .svc-split { grid-template-columns: 1fr; min-height: auto; }
  .svc-split-photo { min-height: 300px; max-height: 420px; }
  .svc-split-info { padding: 2.5rem 1.25rem; }
  .svc-split-actions { flex-direction: column; }
  .svc-split-actions .btn-gold,
  .svc-split-actions .btn-outline-gold { text-align: center; justify-content: center; }
  .svc-features-inner { gap: 1.5rem; }
  .svc-feature-tag { font-size: 0.72rem; padding: 0.45rem 1rem; }
  .svc-detail-section { grid-template-columns: 1fr; }
  .svc-detail-text { padding: 2.5rem 1.25rem; }
  .svc-detail-cta { flex-direction: column; }
  .svc-detail-cta .btn-gold,
  .svc-detail-cta .btn-outline-gold { text-align: center; justify-content: center; }
  .svc-split-meta { gap: 0.75rem; }
  .svc-meta-price-val { font-size: 1rem; }
}

@media (max-width: 576px) {
  .hero-content { padding: 3.5rem 1.25rem; }
  .hero-title { font-size: clamp(1.75rem, 7.5vw, 2.4rem); }
  .hero-desc { font-size: 0.88rem; max-width: 100%; }
  .hero-stats { flex-direction: column !important; padding: 1.5rem 1.25rem; gap: 1rem; }
  .hero-stat-num { font-size: 2.2rem; }
  .hero-divider { display: none; }
  .hero-actions { flex-direction: column; align-items: flex-start; gap: 0.75rem; }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
  .cats-section { padding: 2.5rem 0; }
  .cats-grid { grid-template-columns: 1fr; gap: 8px; padding: 0 1.25rem; }
  .section { padding: 3rem 1.25rem; }
}

@media (prefers-reduced-motion: reduce) {
  .marquee-inner { animation: none; }
  html { scroll-behavior: auto; }
}

/* ===== CATEGORIES SECTION ===== */
.cats-section {
  background: var(--bg-dark);
  padding: 4rem 0;
}
.cats-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.3rem, 3vw, 1.7rem);
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 2rem;
  padding: 0 2rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
.cats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}
.cat-card {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 4/3;
  display: block;
  text-decoration: none;
  background: #1a1208;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.cat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}
.cat-card-img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.55s ease;
}
.cat-card:hover .cat-card-img { transform: scale(1.06); }
.cat-card-placeholder {
  width: 100%; height: 100%;
}
.cat-card:nth-child(1) .cat-card-placeholder { background: linear-gradient(145deg, #4a2a10 0%, #1e1007 100%); }
.cat-card:nth-child(2) .cat-card-placeholder { background: linear-gradient(145deg, #102030 0%, #071015 100%); }
.cat-card:nth-child(3) .cat-card-placeholder { background: linear-gradient(145deg, #1a2a10 0%, #0a1208 100%); }
.cat-card:nth-child(4) .cat-card-placeholder { background: linear-gradient(145deg, #301020 0%, #150810 100%); }
.cat-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.78) 0%, rgba(0,0,0,0.15) 50%, transparent 100%);
  display: flex; align-items: flex-end;
  padding: 1.4rem 1.5rem;
  transition: background 0.3s ease;
}
.cat-card:hover .cat-card-overlay {
  background: linear-gradient(to top, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.25) 55%, transparent 100%);
}
.cat-card-name {
  font-family: 'Playfair Display', serif;
  font-size: clamp(0.9rem, 1.4vw, 1.1rem);
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ===== SERVICES SLIDER ===== */
.svc-slider-wrap { position: relative; overflow: hidden; }
.svc-slider {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 4px;
}
.svc-slider::-webkit-scrollbar { display: none; }
.svc-slider .service-card {
  flex: 0 0 calc(33.333% - 11px);
  scroll-snap-align: start;
  min-width: 240px;
}
@media (max-width: 768px) {
  .svc-slider .service-card { flex: 0 0 85%; min-width: unset; }
}
@media (max-width: 480px) {
  .svc-slider .service-card { flex: 0 0 90%; }
}
.svc-slider-nav {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  padding: 14px 0 0;
}
@media (max-width: 768px) {
  .svc-slider-nav { justify-content: center; }
}
.svc-nav-btn {
  width: 44px; height: 44px;
  border: 1.5px solid var(--border);
  border-radius: 50%;
  background: var(--white);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.15s, border-color 0.15s, opacity 0.2s;
  color: var(--text);
}
.svc-nav-btn:hover { background: var(--gold); border-color: var(--gold); color: #fff; }

/* ===== CERT PROMO BLOCK (home) ===== */
.cert-promo-section { background: var(--bg-dark); }
.cert-promo-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.cert-promo-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--white);
  margin: 0.6rem 0 1rem;
  line-height: 1.2;
}
.cert-promo-desc {
  color: rgba(250,246,239,0.65);
  line-height: 1.75;
  font-size: 0.95rem;
  margin: 0 0 0.5rem;
}
.cert-promo-list {
  list-style: none;
  padding: 0; margin: 1rem 0 2rem;
  display: flex; flex-direction: column; gap: 1rem;
}
.cert-promo-list li {
  display: flex; gap: 0.85rem; align-items: flex-start;
  color: rgba(250,246,239,0.8);
  font-size: 0.9rem;
  line-height: 1.55;
}
.cert-promo-dot {
  flex-shrink: 0;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--gold);
  margin-top: 0.35rem;
}
.cert-promo-btns {
  display: flex; gap: 1rem; flex-wrap: wrap;
}
.cert-promo-visual {
  position: relative;
}
.cert-promo-img {
  width: 100%; border-radius: 16px;
  object-fit: cover;
  aspect-ratio: 4/3;
  display: block;
  box-shadow: 0 24px 60px rgba(0,0,0,0.5);
}
.cert-promo-card-mock {
  aspect-ratio: 4/3;
  border-radius: 16px;
  background: linear-gradient(145deg, #1a1208 0%, #0d0c08 100%);
  border: 1px solid rgba(212,175,55,0.2);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 24px 60px rgba(0,0,0,0.5);
}
.cert-promo-card-inner {
  text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 1rem;
}
.cert-mock-label {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.06em;
  line-height: 1.3;
  text-transform: uppercase;
}
.cert-mock-brand {
  font-size: 0.75rem;
  color: var(--gold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
@media (max-width: 900px) {
  .cert-promo-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .cert-promo-visual { max-width: 480px; margin: 0 auto; width: 100%; }
}

@media (max-width: 768px) {
  .cats-grid { grid-template-columns: 1fr; gap: 0.75rem; padding: 0 1.25rem; max-width: 100%; }
  .cats-heading { padding: 0 1.25rem; }
  .cat-card { aspect-ratio: 16/9; border-radius: 14px; }
}
