:root {
  --bg: #0a0908;
  --bg-elevated: #131110;
  --gold: #b08d57;
  --gold-light: #e4d3ae;
  --gold-dim: #8a6f45;
  --text: #f5f0e6;
  --text-muted: #b8ada0;
  --border: rgba(176, 141, 87, 0.35);
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg);
  background-image:
    radial-gradient(circle at 15% 0%, rgba(176, 141, 87, 0.08), transparent 45%),
    radial-gradient(circle at 85% 20%, rgba(176, 141, 87, 0.06), transparent 50%);
  color: var(--text);
  font-family: var(--sans);
  line-height: 1.6;
  min-height: 100vh;
}

a {
  text-decoration: none;
  color: inherit;
}

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

/* Header */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 30px 32px 14px;
  z-index: 100;
}

.site-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 210px;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.9) 0%,
    rgba(0, 0, 0, 0.75) 30%,
    rgba(0, 0, 0, 0.4) 55%,
    transparent 85%
  );
  z-index: -1;
  pointer-events: none;
}

.header-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.header-side {
  display: flex;
  align-items: center;
}

.header-side-left {
  justify-content: flex-start;
}

.header-side-right {
  justify-content: flex-end;
}

.logo-link {
  display: inline-flex;
  align-items: center;
  justify-self: center;
}

.logo {
  height: 108px;
  width: 108px;
  border-radius: 50%;
  transition: transform 0.3s ease;
}

.logo-link:hover .logo {
  transform: scale(1.05);
}

/* Language switcher */

.lang-switcher {
  display: flex;
  align-items: center;
  gap: 8px;
}

.lang-btn {
  background: none;
  border: none;
  color: var(--text-muted);
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  cursor: pointer;
  padding: 4px 2px;
  transition: color 0.2s ease;
  position: relative;
}

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

.lang-btn.active {
  color: var(--gold-light);
}

.lang-btn.active::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -3px;
  height: 1px;
  background: var(--gold);
}

.lang-sep {
  color: var(--border);
  font-size: 0.75rem;
}

/* Hero */

.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 200px 24px 60px;
  text-align: center;
  gap: 18px;
}

.hero-eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}

.hero-heading {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 500;
  color: var(--gold-light);
  letter-spacing: 0.01em;
  max-width: 720px;
}

.hero-subtext {
  color: var(--text-muted);
  font-size: 1.05rem;
  font-weight: 300;
  max-width: 480px;
}

.hero-features {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-dim);
  margin-bottom: 24px;
}

.hero-image-wrap {
  position: relative;
  display: block;
  width: min(720px, 88vw);
  aspect-ratio: 16 / 10;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow:
    0 0 0 1px rgba(176, 141, 87, 0.12),
    0 30px 80px -20px rgba(0, 0, 0, 0.8),
    0 0 60px -10px rgba(176, 141, 87, 0.15);
  background: linear-gradient(145deg, #1a1712, #050403 60%);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.hero-image-wrap:hover {
  transform: translateY(-3px);
  border-color: var(--gold);
  box-shadow:
    0 0 0 1px rgba(176, 141, 87, 0.2),
    0 34px 90px -18px rgba(0, 0, 0, 0.85),
    0 0 70px -6px rgba(176, 141, 87, 0.25);
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  z-index: 2;
}

.hero-image-fallback {
  position: absolute;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1;
  background:
    radial-gradient(circle at 30% 20%, rgba(176, 141, 87, 0.18), transparent 55%),
    radial-gradient(circle at 75% 80%, rgba(176, 141, 87, 0.12), transparent 50%),
    linear-gradient(150deg, #17140f, #0a0908 70%);
}

.fallback-mark {
  font-size: clamp(2rem, 6vw, 3.2rem);
  color: var(--gold-light);
  opacity: 0.45;
}

.hero-image-wrap.no-image .hero-image {
  display: none;
}

.hero-image-wrap.no-image .hero-image-fallback {
  display: flex;
}

.hero-actions {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

/* Buttons */

.btn {
  display: inline-block;
  padding: 16px 42px;
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: #0a0908;
  border: 1px solid var(--gold);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #f0e4c8, var(--gold-light));
  box-shadow: 0 8px 24px -6px rgba(176, 141, 87, 0.5);
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: var(--gold-light);
  border: 1px solid var(--border);
}

.btn-secondary:hover {
  border-color: var(--gold);
  background: rgba(176, 141, 87, 0.08);
  transform: translateY(-2px);
}

/* Space Section */

.space-section {
  padding: 100px 24px 120px;
  border-top: 1px solid var(--border);
  background: linear-gradient(180deg, transparent, rgba(176, 141, 87, 0.03));
}

.space-container {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.space-section h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 5vw, 2.8rem);
  font-weight: 500;
  color: var(--gold-light);
  letter-spacing: 0.02em;
}

.divider {
  width: 64px;
  height: 1px;
  background: var(--gold);
  margin: 28px auto 34px;
  opacity: 0.6;
}

.space-text {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 22px;
  font-weight: 300;
}

.space-container .btn {
  margin-top: 20px;
}

/* Gallery */

.gallery {
  max-width: 1100px;
  margin: 56px auto 48px;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.gallery-item {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: linear-gradient(145deg, #1a1712, #050403 60%);
  cursor: pointer;
  padding: 0;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.gallery-item:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  box-shadow: 0 16px 40px -14px rgba(176, 141, 87, 0.35);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  z-index: 2;
}

.gallery-fallback {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--gold-light);
  opacity: 0.4;
  background:
    radial-gradient(circle at 30% 20%, rgba(176, 141, 87, 0.16), transparent 55%),
    linear-gradient(150deg, #17140f, #0a0908 70%);
}

.gallery-item.no-image img {
  display: none;
}

.gallery-item.no-image .gallery-fallback {
  display: flex;
}

/* Lightbox */

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(5, 4, 3, 0.94);
}

.lightbox.open {
  display: flex;
}

.lightbox-image {
  max-width: min(90vw, 1000px);
  max-height: 85vh;
  border-radius: 4px;
  border: 1px solid var(--border);
  box-shadow: 0 30px 80px -20px rgba(0, 0, 0, 0.8);
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 28px;
  background: none;
  border: none;
  color: var(--gold-light);
  font-size: 2.2rem;
  line-height: 1;
  cursor: pointer;
  opacity: 0.8;
  transition: opacity 0.2s ease;
}

.lightbox-close:hover {
  opacity: 1;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: 1px solid var(--border);
  color: var(--gold-light);
  font-size: 1.8rem;
  line-height: 1;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.lightbox-nav:hover {
  border-color: var(--gold);
  background: rgba(176, 141, 87, 0.1);
}

.lightbox-prev {
  left: 24px;
}

.lightbox-next {
  right: 24px;
}

/* Services */

.services-section {
  padding: 100px 24px 90px;
  border-top: 1px solid var(--border);
  background: linear-gradient(180deg, transparent, rgba(176, 141, 87, 0.03));
}

.services-grid {
  max-width: 1000px;
  margin: 56px auto 48px;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.service-card {
  padding: 32px 22px;
  border: 1px solid var(--border);
  border-radius: 4px;
  background: linear-gradient(160deg, rgba(176, 141, 87, 0.06), transparent 70%);
  text-align: center;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  box-shadow: 0 16px 40px -16px rgba(176, 141, 87, 0.3);
}

.service-card h3 {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--gold-light);
  margin-bottom: 12px;
}

.service-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 300;
  line-height: 1.55;
}

/* Therapists */

.therapists-section {
  padding: 100px 24px 110px;
  border-top: 1px solid var(--border);
}

/* CTA */

.cta-section {
  padding: 100px 24px 110px;
  text-align: center;
  border-top: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(176, 141, 87, 0.04), transparent);
}

.cta-section h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 5vw, 2.8rem);
  font-weight: 500;
  color: var(--gold-light);
  margin-bottom: 18px;
}

.cta-section .btn {
  margin-top: 12px;
}

/* Footer */

.site-footer {
  padding: 88px 24px 56px;
  text-align: center;
  border-top: 1px solid var(--border);
}

.footer-logo {
  height: 40px;
  width: 40px;
  border-radius: 50%;
  margin: 0 auto 14px;
  opacity: 0.85;
}

.footer-columns {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: stretch;
  gap: 0 56px;
  max-width: 680px;
  margin: 0 auto;
}

.footer-rule {
  width: 1px;
  background: linear-gradient(
    180deg,
    transparent 0%,
    var(--gold) 18%,
    var(--gold) 82%,
    transparent 100%
  );
  opacity: 0.45;
}

.footer-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}

.footer-col .eyebrow {
  margin-bottom: 0;
}

.footer-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

a.footer-item {
  transition: color 0.25s ease;
}

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

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

.footer-item-label {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-dim);
}

.footer-item-value {
  font-size: 0.95rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--gold-light);
}

a.footer-item .footer-item-value {
  position: relative;
  padding-bottom: 4px;
}

a.footer-item .footer-item-value::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transform: translateX(-50%);
  transition: width 0.3s ease;
}

a.footer-item:hover .footer-item-value::after {
  width: 100%;
}

.footer-bottom {
  margin: 56px auto 0;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  max-width: 360px;
}

.footer-copy {
  font-size: 0.72rem;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  opacity: 0.8;
}

/* Chat widget */

.chat-widget {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 200;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 14px;
}

.chat-toggle {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: #0a0908;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 12px 30px -10px rgba(176, 141, 87, 0.55);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.chat-toggle:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 16px 36px -10px rgba(176, 141, 87, 0.65);
}

.chat-toggle-icon {
  width: 26px;
  height: 26px;
}

.chat-popup {
  display: none;
  flex-direction: column;
  gap: 10px;
  width: 220px;
  padding: 20px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: linear-gradient(160deg, #17140f, #0a0908 80%);
  box-shadow: 0 24px 60px -18px rgba(0, 0, 0, 0.75);
}

.chat-popup.open {
  display: flex;
  animation: chat-pop-in 0.2s ease;
}

@keyframes chat-pop-in {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.chat-popup-title {
  font-family: var(--serif);
  font-size: 1.05rem;
  color: var(--gold-light);
  margin-bottom: 4px;
  text-align: center;
}

.chat-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 4px;
  color: var(--text);
  font-size: 0.88rem;
  font-weight: 400;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.chat-option:hover {
  border-color: var(--gold);
  background: rgba(176, 141, 87, 0.08);
}

.chat-icon {
  width: 20px;
  height: 20px;
  color: var(--gold-light);
  flex-shrink: 0;
}

/* Responsive */

@media (max-width: 640px) {
  .site-header {
    padding: 22px 20px 12px;
  }

  .site-header::before {
    height: 150px;
  }

  .logo {
    height: 76px;
    width: 76px;
  }

  .lang-btn {
    font-size: 0.68rem;
  }

  .hero {
    padding: 150px 20px 50px;
    gap: 14px;
  }

  .hero-features {
    margin-bottom: 18px;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin: 40px auto 36px;
  }

  .service-card {
    padding: 26px 18px;
  }

  .services-section,
  .therapists-section,
  .cta-section {
    padding: 70px 20px 90px;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
    max-width: 320px;
  }

  .btn {
    width: 100%;
    text-align: center;
  }

  .space-section {
    padding: 70px 20px 90px;
  }

  .gallery {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin: 40px auto 36px;
  }

  .lightbox-nav {
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
  }

  .lightbox-prev {
    left: 10px;
  }

  .lightbox-next {
    right: 10px;
  }

  .lightbox-close {
    top: 14px;
    right: 16px;
  }

  .footer-columns {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .footer-rule {
    width: 48px;
    height: 1px;
    justify-self: center;
    background: linear-gradient(
      90deg,
      transparent 0%,
      var(--gold) 18%,
      var(--gold) 82%,
      transparent 100%
    );
  }

  .footer-bottom {
    margin-top: 44px;
  }

  .chat-widget {
    bottom: 18px;
    right: 18px;
  }

  .chat-toggle {
    width: 52px;
    height: 52px;
  }

  .chat-popup {
    width: 190px;
    padding: 16px;
  }
}
