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

:root {
  --green: #7BAE7F;
  --green-deep: #5A8F5E;
  --green-soft: #A8CFA6;
  --green-bg: #D6E8D4;
  --gold: #C9A96E;
  --gold-deep: #A8893F;
  --gold-soft: #E0CC9D;
  --gold-bg: #EDE3C8;
  --rose: #D4849A;
  --rose-deep: #B8607A;
  --rose-soft: #E8B4C4;
  --rose-bg: #F2D0DB;
  --white-pure: #FFFFFF;
  --lilac: #C9B8DB;
  --lilac-deep: #9B82B5;
  --lilac-soft: #E2D8ED;
  --lilac-bg: #DDD0EC;
  --cream: #F5F0E8;
  --text-dark: #2A2420;
  --text-mid: #5C504A;
  --text-light: #8A7E78;
}

html, body {
  overflow: hidden;
  height: 100%;
}

body {
  font-family: 'Jost', sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
}

h1, h2, h3, h4 {
  font-family: 'Cinzel', Georgia, serif;
  font-weight: 400;
}

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

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

::selection {
  background: var(--gold-soft);
  color: var(--text-dark);
}

/* ========== CUSTOM CURSOR ========== */
.cursor {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  pointer-events: none;
  mix-blend-mode: difference;
}

.cursor-dot {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--white-pure);
  transform: translate(-50%, -50%);
  transition: width 0.3s ease, height 0.3s ease, opacity 0.3s ease;
}

.cursor-ring {
  position: absolute;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.6);
  transform: translate(-50%, -50%);
  transition: width 0.4s cubic-bezier(0.23, 1, 0.32, 1),
              height 0.4s cubic-bezier(0.23, 1, 0.32, 1),
              border-color 0.3s ease,
              background 0.3s ease;
}

/* Cursor grows on interactive elements */
.cursor.is-hover .cursor-ring {
  width: 56px;
  height: 56px;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.9);
}

.cursor.is-hover .cursor-dot {
  width: 4px;
  height: 4px;
  opacity: 0.5;
}

/* Cursor accent on text elements */
.cursor.is-text .cursor-ring {
  width: 4px;
  height: 4px;
  background: var(--white-pure);
  border-color: transparent;
}

.cursor.is-text .cursor-dot {
  opacity: 0;
}

/* Hide custom cursor on mobile/touch */
@media (max-width: 768px), (hover: none) {
  .cursor { display: none; }
}

/* Hide default cursor on desktop */
@media (hover: hover) {
  *, *::before, *::after {
    cursor: none !important;
  }
}

/* ========== DYNAMIC PALETTE OVERLAY ========== */
.palette-overlay {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0;
  transition: opacity 1.2s ease, background 1.2s ease;
}

.palette-overlay.active {
  opacity: 1;
}

.palette-overlay.palette-spiritual {
  background: radial-gradient(ellipse at 50% 50%, rgba(201, 169, 110, 0.08) 0%, rgba(201, 184, 219, 0.08) 40%, transparent 70%);
}

.palette-overlay.palette-energetic {
  background: radial-gradient(ellipse at 50% 50%, rgba(201, 169, 110, 0.12) 0%, transparent 70%);
}

.palette-overlay.palette-body {
  background: radial-gradient(ellipse at 50% 50%, rgba(123, 174, 127, 0.12) 0%, transparent 70%);
}

/* ========== LOADER ========== */
.loader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: linear-gradient(135deg, var(--gold-bg) 0%, var(--cream) 40%, var(--gold-bg) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

.loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-text {
  font-size: clamp(2rem, 5vw, 3.5rem);
  opacity: 0;
  animation: loaderFade 1.8s ease forwards;
  letter-spacing: 0.04em;
}

.loader-line {
  width: 80px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold-deep), var(--gold), var(--gold-soft));
  margin-top: 1.5rem;
  transform: scaleX(0);
  animation: loaderLine 1.8s ease 0.3s forwards;
}

@keyframes loaderFade {
  0% { opacity: 0; transform: translateY(10px); }
  50% { opacity: 1; transform: translateY(0); }
  100% { opacity: 1; }
}

@keyframes loaderLine {
  to { transform: scaleX(1); }
}

/* ========== NOISE TEXTURE OVERLAY ========== */
.noise-overlay {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 200px 200px;
}

/* ========== CONTINUOUS BACKGROUND ========== */
.bg-layer {
  position: fixed;
  inset: 0;
  z-index: -1;
  width: 2200vw;
  height: 100vh;
  background: linear-gradient(
    90deg,
    var(--gold-bg) 0%,
    var(--cream) 6%,
    var(--gold-bg) 12%,
    var(--lilac-bg) 18%,
    var(--gold-bg) 24%,
    var(--cream) 30%,
    var(--gold-bg) 36%,
    var(--green-bg) 42%,
    var(--gold-bg) 48%,
    var(--cream) 54%,
    var(--gold-bg) 60%,
    var(--lilac-bg) 66%,
    var(--gold-bg) 72%,
    var(--cream) 78%,
    var(--gold-bg) 84%,
    var(--green-bg) 90%,
    var(--gold-bg) 100%
  );
  will-change: transform;
}

/* ========== HORIZONTAL LAYOUT ========== */
.horizontal-container {
  display: flex;
  height: 100vh;
  will-change: transform;
  position: relative;
  z-index: 1;
}

.panel {
  min-width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 2rem;
}

/* ========== NAVBAR ========== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.2rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  mix-blend-mode: normal;
}

.navbar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(245, 240, 232, 0.45);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(201, 169, 110, 0.18);
  z-index: -1;
}

.navbar-brand {
  font-size: 1.15rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  display: flex;
  align-items: baseline;
}

.navbar-brand .brand-be {
  font-size: 1em;
}

.navbar-brand .brand-okey {
  font-size: 1em;
  font-weight: 500;
}

.navbar-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.navbar-links a {
  font-family: 'Jost', sans-serif;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--text-light);
  transition: color 0.3s;
  position: relative;
  font-weight: 400;
}

.navbar-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s ease;
}

.navbar-links a:hover { color: var(--text-dark); }
.navbar-links a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* Progress bar */
.nav-progress {
  position: fixed;
  bottom: 0;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-soft), var(--gold), var(--gold-deep), var(--lilac));
  z-index: 101;
  transition: width 0.1s linear;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-dark);
  padding: 0.5rem;
}

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99;
  background: linear-gradient(135deg, var(--gold-bg), var(--cream), var(--gold-bg));
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.mobile-menu.active { display: flex; }

.mobile-menu a {
  font-family: 'Cinzel', serif;
  font-size: 1.8rem;
  color: var(--text-dark);
  transition: color 0.3s;
  letter-spacing: 0.05em;
}

.mobile-menu a:hover { color: var(--gold-deep); }

@media (max-width: 768px) {
  .navbar { padding: 1rem 1.5rem; }
  .navbar-links { display: none; }
  .menu-toggle { display: block; }
}

/* ========== SCROLL REVEAL ========== */
.reveal {
  opacity: 0;
  transform: translateY(20px) scale(0.97);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.3s; }
.delay-3 { transition-delay: 0.45s; }
.delay-4 { transition-delay: 0.6s; }
.delay-5 { transition-delay: 0.75s; }

/* ========== BRAND COLORS ========== */
.brand-be {
  font-family: 'Cinzel Decorative', serif;
  background: linear-gradient(135deg, var(--lilac-deep), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.brand-okey {
  font-family: 'Cinzel', serif;
  background: linear-gradient(135deg, var(--gold), var(--green));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ========== PANEL: HERO ========== */
.hero-content {
  text-align: center;
  z-index: 1;
}

.hero-content h1 {
  font-size: clamp(3.5rem, 9vw, 8rem);
  font-weight: 400;
  line-height: 1;
  margin-bottom: 1.2rem;
  letter-spacing: 0.02em;
  opacity: 0;
  animation: fadeUp 1s ease 2.2s forwards;
  position: relative;
}

/* Soft glow aura behind hero title */
.hero-content h1::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(201, 169, 110, 0.2) 0%, rgba(155, 130, 181, 0.08) 35%, rgba(201, 169, 110, 0.06) 60%, transparent 80%);
  border-radius: 50%;
  filter: blur(40px);
  animation: auralPulse 5s ease-in-out infinite;
  pointer-events: none;
  z-index: -1;
}

@keyframes auralPulse {
  0%, 100% { opacity: 0.6; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 1; transform: translate(-50%, -50%) scale(1.08); }
}

.hero-content h1 .brand-be {
  font-size: 0.85em;
  letter-spacing: 0.06em;
  position: relative;
  animation: shimmerBe 4s ease-in-out 3.5s infinite;
}

.hero-content h1 .brand-okey {
  font-weight: 500;
  letter-spacing: 0.04em;
  position: relative;
  animation: shimmerOkey 4s ease-in-out 4.5s infinite;
}

@keyframes shimmerBe {
  0%, 100% {
    background: linear-gradient(135deg, var(--lilac-deep), var(--gold));
    -webkit-background-clip: text;
    background-clip: text;
  }
  50% {
    background: linear-gradient(135deg, var(--gold), var(--lilac));
    -webkit-background-clip: text;
    background-clip: text;
  }
}

@keyframes shimmerOkey {
  0%, 100% {
    background: linear-gradient(135deg, var(--gold), var(--green));
    -webkit-background-clip: text;
    background-clip: text;
  }
  50% {
    background: linear-gradient(135deg, var(--green-soft), var(--gold-deep));
    -webkit-background-clip: text;
    background-clip: text;
  }
}

.hero-line {
  width: 50px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), var(--lilac-soft), var(--green-soft));
  margin: 0 auto 1rem;
  opacity: 0;
  animation: lineReveal 0.8s ease 2.8s forwards;
}

.hero-subtitle {
  font-family: 'Cinzel', serif;
  font-size: clamp(0.9rem, 1.5vw, 1.15rem);
  color: var(--text-mid);
  font-weight: 400;
  letter-spacing: 0.15em;
  margin-bottom: 0.6rem;
  opacity: 0;
  animation: fadeUp 0.8s ease 3s forwards;
}

.hero-role {
  font-family: 'Jost', sans-serif;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.35em;
  color: var(--text-light);
  font-weight: 300;
  opacity: 0;
  animation: fadeUp 0.8s ease 3.3s forwards;
}

.hero-scroll-hint {
  position: absolute;
  right: 3rem;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  opacity: 0;
  animation: fadeUp 0.8s ease 3.4s forwards;
}

.hero-scroll-hint span {
  font-family: 'Jost', sans-serif;
  writing-mode: vertical-rl;
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--text-light);
  font-weight: 300;
}

.hero-scroll-hint .scroll-arrow {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold-deep), var(--gold-soft), transparent);
  animation: scrollPulse 2s ease infinite;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(15px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes lineReveal {
  from { opacity: 0; transform: scaleX(0); }
  to { opacity: 1; transform: scaleX(1); }
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

/* ========== PANEL: ABOUT ========== */
.panel-about {
  min-width: 120vw;
}

.about-inner {
  display: grid;
  grid-template-columns: 0.7fr 1fr;
  gap: 5rem;
  align-items: center;
  max-width: 1100px;
  width: 100%;
  padding: 0 4rem;
}

.about-photo {
  aspect-ratio: 3/4;
  border-radius: 180px 180px 20px 20px;
  overflow: hidden;
  background: linear-gradient(180deg, var(--gold-soft), var(--gold-bg));
  position: relative;
}

.about-photo picture {
  display: contents;
}

.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  transform: scale(1.45);
  filter: saturate(0.85) contrast(1.05) brightness(1.02);
  transition: filter 0.6s ease, transform 0.6s ease;
}

.about-photo:hover img {
  filter: saturate(1) contrast(1.05) brightness(1.02);
  transform: scale(1.5);
}

/* Soft gradient overlay on photo edges */
.about-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(180deg, transparent 60%, rgba(201, 169, 110, 0.15) 100%);
  pointer-events: none;
}

.about-photo-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.8rem;
}

.about-photo-placeholder svg {
  opacity: 0.25;
  color: var(--white-pure);
}

.about-photo-placeholder span {
  font-size: 0.75rem;
  color: var(--white-pure);
  opacity: 0.4;
}

.about-label {
  font-family: 'Jost', sans-serif;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.4em;
  color: var(--gold);
  margin-bottom: 0.8rem;
  font-weight: 300;
}

.about-title {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  margin-bottom: 1.2rem;
  letter-spacing: 0.04em;
}

.about-line {
  width: 40px;
  height: 1px;
  background: var(--gold);
  margin-bottom: 1.5rem;
}

.about-text p {
  color: var(--text-mid);
  line-height: 1.85;
  margin-bottom: 1.2rem;
  font-weight: 300;
  font-size: 0.95rem;
}

.about-text .emphasis {
  font-family: 'Cinzel', serif;
  font-size: 1.1rem;
  font-style: italic;
  color: var(--text-dark);
  line-height: 1.6;
  margin-top: 0.5rem;
  padding-left: 1.2rem;
  border-left: 2px solid var(--gold-soft);
  letter-spacing: 0.02em;
}

.about-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.2rem;
  padding: 0.5rem 1rem;
  background: rgba(201, 169, 110, 0.15);
  border-radius: 50px;
  font-size: 0.78rem;
  color: var(--gold-deep);
  font-weight: 400;
}

.about-badge span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

/* ========== PANEL: TESTIMONIALS ========== */
.panel-testimonials {
  min-width: 140vw;
  text-align: center;
}

.testimonials-content {
  max-width: 1200px;
  width: 100%;
  padding: 0 4rem;
}

.testimonials-label {
  font-family: 'Jost', sans-serif;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.4em;
  color: var(--gold);
  margin-bottom: 0.8rem;
  font-weight: 300;
}

.testimonials-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 3rem;
  letter-spacing: 0.04em;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  text-align: left;
}

.testimonial-card {
  padding: 2.5rem 2rem !important;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 2rem;
}

.testimonial-text {
  font-family: 'Jost', sans-serif;
  font-size: 0.95rem;
  font-style: italic;
  color: var(--text-mid);
  line-height: 1.85;
  font-weight: 300;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.testimonial-initial {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-soft), var(--lilac-soft));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cinzel', serif;
  font-size: 0.8rem;
  color: var(--text-dark);
  flex-shrink: 0;
}

.testimonial-name {
  display: block;
  font-family: 'Cinzel', serif;
  font-size: 0.8rem;
  color: var(--text-dark);
  letter-spacing: 0.03em;
}

.testimonial-service {
  display: block;
  font-family: 'Jost', sans-serif;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-light);
  font-weight: 300;
  margin-top: 0.15rem;
}

/* ========== PANELS: SERVICES ========== */
.panel-service {
  text-align: center;
  min-width: 55vw;
}

.panel-service-intro {
  min-width: 55vw;
  text-align: center;
}

.service-intro-content {
  max-width: 450px;
}

.service-intro-content h2 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 1.2rem;
  letter-spacing: 0.08em;
  background: linear-gradient(135deg, var(--text-dark) 0%, var(--gold-deep) 50%, var(--lilac-deep) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.service-intro-content .section-line {
  width: 40px;
  height: 1px;
  background: var(--gold);
  margin: 0 auto 1.5rem;
}

.service-intro-content p {
  font-family: 'Jost', sans-serif;
  color: var(--text-mid);
  font-weight: 300;
  line-height: 1.8;
  font-size: 0.95rem;
}

/* Service alignment variations */
.svc-align-left {
  justify-content: flex-start;
  padding-left: 10vw;
  text-align: left;
}

.svc-align-left .service-line {
  margin: 0 0 1.5rem 0;
}

.svc-align-right {
  justify-content: flex-end;
  padding-right: 10vw;
  text-align: right;
}

.svc-align-right .service-line {
  margin: 0 0 1.5rem auto;
}

/* Thin vertical separator between services */
.panel-service::before {
  content: '';
  position: absolute;
  left: 0;
  top: 25%;
  height: 50%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--gold), transparent);
}

/* Frosted glass backdrop for text legibility */
.text-glass {
  background: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  border-radius: 24px;
  padding: 3rem 3.5rem;
  border: 1px solid rgba(201, 169, 110, 0.18);
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.06),
    0 2px 8px rgba(0, 0, 0, 0.04),
    inset 0 1px 0 rgba(201, 169, 110, 0.12);
  transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1),
              box-shadow 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  position: relative;
  transform-style: preserve-3d;
  will-change: transform;
}

/* Animated gradient border */
.text-glass::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 25px;
  background: conic-gradient(
    from var(--border-angle, 0deg),
    transparent 0%,
    var(--lilac-soft) 10%,
    transparent 20%,
    var(--gold) 35%,
    transparent 45%,
    var(--gold-soft) 60%,
    transparent 70%,
    var(--green-soft) 85%,
    transparent 95%
  );
  z-index: -1;
  opacity: 0;
  transition: opacity 0.6s ease;
  animation: rotateBorder 8s linear infinite;
}

.text-glass:hover::before {
  opacity: 1;
}

@property --border-angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}

@keyframes rotateBorder {
  to { --border-angle: 360deg; }
}

/* Inner glow on hover */
.text-glass::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 24px;
  background: radial-gradient(ellipse at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(255, 255, 255, 0.15), transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.text-glass:hover::after {
  opacity: 1;
}

.service-card {
  max-width: 480px;
}

.service-card h3 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  margin-bottom: 1.5rem;
  letter-spacing: 0.04em;
  background: linear-gradient(135deg, var(--text-dark) 0%, var(--gold-deep) 50%, var(--lilac-deep) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.service-line {
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), var(--gold-soft));
  margin: 0 auto 1.5rem;
  transition: width 0.8s cubic-bezier(0.23, 1, 0.32, 1) 0.3s;
}

.visible .service-line,
.service-line.visible {
  width: 30px;
}

.service-card p {
  font-family: 'Jost', sans-serif;
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.9;
  font-weight: 300;
}

/* Service number */
.svc-number {
  font-family: 'Cinzel Decorative', serif;
  font-size: 2.2rem;
  letter-spacing: 0.05em;
  color: var(--text-light);
  opacity: 0.12;
  display: block;
  margin-bottom: 0.4rem;
  line-height: 1;
}

/* Service CTA */
.svc-cta {
  display: inline-block;
  font-family: 'Jost', sans-serif;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold-deep);
  margin-top: 1.5rem;
  padding: 0.55rem 1.6rem;
  border: 1px solid var(--gold-soft);
  border-radius: 50px;
  transition: all 0.4s ease;
  font-weight: 400;
}

.svc-cta:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white-pure);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(201, 169, 110, 0.3);
}

/* Service category tag */
.svc-tag {
  display: inline-block;
  font-family: 'Jost', sans-serif;
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  padding: 0.3rem 0.8rem;
  border-radius: 50px;
  margin-bottom: 1.2rem;
  font-weight: 400;
}

.svc-tag--spiritual {
  background: rgba(201, 184, 219, 0.2);
  color: var(--lilac-deep);
  border: 1px solid rgba(201, 184, 219, 0.3);
}

.svc-tag--energetic {
  background: rgba(201, 169, 110, 0.15);
  color: var(--gold-deep);
  border: 1px solid rgba(201, 169, 110, 0.25);
}

.svc-tag--body {
  background: rgba(123, 174, 127, 0.15);
  color: var(--green-deep);
  border: 1px solid rgba(123, 174, 127, 0.25);
}

/* Service intro categories */
.service-categories {
  display: flex;
  gap: 0.8rem;
  justify-content: center;
  margin-top: 1.8rem;
  flex-wrap: wrap;
}

.svc-cat {
  font-family: 'Jost', sans-serif;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-weight: 400;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.svc-cat:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.svc-cat--spiritual {
  background: rgba(201, 184, 219, 0.25);
  color: var(--lilac-deep);
  border: 1px solid rgba(201, 184, 219, 0.35);
}

.svc-cat--energetic {
  background: rgba(201, 169, 110, 0.2);
  color: var(--gold-deep);
  border: 1px solid rgba(201, 169, 110, 0.3);
}

.svc-cat--body {
  background: rgba(123, 174, 127, 0.2);
  color: var(--green-deep);
  border: 1px solid rgba(123, 174, 127, 0.3);
}


/* ========== PANEL: GALLERY (3D Carousel) ========== */
.panel-gallery {
  min-width: 100vw;
  text-align: center;
}

.gallery-content {
  max-width: 900px;
  width: 100%;
  padding: 0 2rem;
}

.gallery-label {
  font-family: 'Jost', sans-serif;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.4em;
  color: var(--gold);
  margin-bottom: 0.8rem;
  font-weight: 300;
}

.gallery-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 2.5rem;
  letter-spacing: 0.04em;
  background: linear-gradient(135deg, var(--text-dark) 0%, var(--gold-deep) 60%, var(--lilac-deep) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gallery-carousel {
  position: relative;
  width: 100%;
  height: 420px;
  perspective: 1200px;
  overflow: visible;
}

.carousel-track {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
}

.carousel-slide {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 320px;
  height: 380px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.15);
  transition: transform 0.7s cubic-bezier(0.23, 1, 0.32, 1),
              opacity 0.7s ease,
              filter 0.7s ease,
              box-shadow 0.7s ease;
  transform: translate(-50%, -50%) scale(0.6);
  opacity: 0;
  filter: brightness(0.7) saturate(0.7);
  pointer-events: none;
}

.carousel-slide picture {
  display: contents;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Active (center) slide */
.carousel-slide.is-active {
  transform: translate(-50%, -50%) translateZ(80px) scale(1);
  opacity: 1;
  filter: brightness(1.02) saturate(1);
  z-index: 10;
  pointer-events: auto;
  box-shadow:
    0 16px 60px rgba(201, 169, 110, 0.25),
    0 4px 20px rgba(0, 0, 0, 0.15);
}

/* Adjacent slides (-1 and +1) */
.carousel-slide.is-prev {
  transform: translate(-50%, -50%) translateX(-280px) translateZ(-60px) rotateY(25deg) scale(0.8);
  opacity: 0.55;
  filter: brightness(0.75) saturate(0.6);
  z-index: 5;
}

.carousel-slide.is-next {
  transform: translate(-50%, -50%) translateX(280px) translateZ(-60px) rotateY(-25deg) scale(0.8);
  opacity: 0.55;
  filter: brightness(0.75) saturate(0.6);
  z-index: 5;
}

/* Far slides (-2 and +2) */
.carousel-slide.is-far-prev {
  transform: translate(-50%, -50%) translateX(-480px) translateZ(-160px) rotateY(35deg) scale(0.6);
  opacity: 0.25;
  filter: brightness(0.6) saturate(0.4);
  z-index: 2;
}

.carousel-slide.is-far-next {
  transform: translate(-50%, -50%) translateX(480px) translateZ(-160px) rotateY(-35deg) scale(0.6);
  opacity: 0.25;
  filter: brightness(0.6) saturate(0.4);
  z-index: 2;
}

/* Gold glow ring on active slide */
.carousel-slide.is-active::after {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 19px;
  border: 2px solid rgba(201, 169, 110, 0.35);
  pointer-events: none;
}

/* Carousel navigation buttons */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--gold-soft);
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: var(--gold-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.carousel-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white-pure);
  box-shadow: 0 4px 16px rgba(201, 169, 110, 0.35);
}

.carousel-btn--prev { left: -1rem; }
.carousel-btn--next { right: -1rem; }

/* Carousel captions */
.carousel-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem 1rem 0.8rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.55), transparent);
  font-family: 'Jost', sans-serif;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 300;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.5s ease 0.2s, transform 0.5s ease 0.2s;
  pointer-events: none;
}

.carousel-slide.is-active .carousel-caption {
  opacity: 1;
  transform: translateY(0);
}

/* Carousel dot indicators */
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.carousel-dot-indicator {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold-soft);
  border: none;
  padding: 0;
  transition: all 0.4s ease;
  opacity: 0.4;
}

.carousel-dot-indicator.is-active {
  opacity: 1;
  background: var(--gold);
  transform: scale(1.3);
}

/* ========== PANEL: CLOSING (Contact + Footer) ========== */
.panel-closing {
  min-width: 100vw;
  width: 100vw;
  background: linear-gradient(135deg, #1E1B16 0%, #2A2520 40%, #1E1B16 100%);
  z-index: 2;
  flex-direction: column;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Ambient gold glow */
.closing-glow {
  position: absolute;
  top: 15%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(201, 169, 110, 0.12) 0%, rgba(201, 169, 110, 0.04) 40%, transparent 70%);
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
  animation: closingGlowPulse 6s ease-in-out infinite;
}

@keyframes closingGlowPulse {
  0%, 100% { opacity: 0.7; transform: translateX(-50%) scale(1); }
  50% { opacity: 1; transform: translateX(-50%) scale(1.1); }
}

.closing-inner {
  width: 100%;
  max-width: 960px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  gap: 3.5rem;
  position: relative;
  z-index: 1;
  padding: 0 3rem;
}

/* Hero heading area */
.closing-hero {
  text-align: center;
}

.closing-label {
  font-family: 'Jost', sans-serif;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.4em;
  color: var(--gold);
  margin-bottom: 1.2rem;
  font-weight: 300;
}

.closing-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 1.5rem;
  letter-spacing: 0.04em;
  line-height: 1.2;
  font-weight: 400;
}

.closing-title em {
  font-family: 'Cinzel Decorative', serif;
  font-style: normal;
  background: linear-gradient(135deg, var(--gold), var(--gold-soft));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.closing-subtitle {
  font-family: 'Jost', sans-serif;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.45);
  font-weight: 300;
  line-height: 1.7;
  max-width: 440px;
  margin: 0 auto;
  letter-spacing: 0.02em;
}

/* Contact grid */
.closing-grid {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 4rem;
  width: 100%;
}

.closing-block {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
  max-width: 340px;
}

.closing-block-label {
  font-family: 'Jost', sans-serif;
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--gold);
  font-weight: 400;
  display: block;
  margin-bottom: 0.3rem;
}

.closing-grid-divider {
  width: 1px;
  height: 200px;
  background: linear-gradient(to bottom, transparent, rgba(201, 169, 110, 0.25), transparent);
  flex-shrink: 0;
  align-self: center;
}

/* QR frame - premium dark variant */
.qr-frame {
  width: 130px;
  height: 130px;
  padding: 10px;
  background: var(--white-pure);
  border-radius: 16px;
  box-shadow:
    0 4px 24px rgba(0, 0, 0, 0.3),
    0 0 0 1px rgba(201, 169, 110, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: box-shadow 0.4s ease, transform 0.4s ease;
}

.qr-frame:hover {
  box-shadow:
    0 8px 40px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(201, 169, 110, 0.3),
    0 0 30px rgba(201, 169, 110, 0.1);
  transform: translateY(-2px);
}

.qr-frame img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.closing-block-hint {
  font-family: 'Jost', sans-serif;
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.35);
  font-weight: 300;
  letter-spacing: 0.03em;
}

/* Premium CTA button */
.closing-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: 'Jost', sans-serif;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold);
  padding: 0.7rem 1.8rem;
  border: 1px solid rgba(201, 169, 110, 0.35);
  border-radius: 50px;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  font-weight: 400;
  background: transparent;
  position: relative;
  overflow: hidden;
}

.closing-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50px;
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: -1;
}

.closing-cta:hover {
  color: #1E1B16;
  border-color: var(--gold);
  box-shadow: 0 4px 24px rgba(201, 169, 110, 0.3);
  transform: translateY(-1px);
}

.closing-cta:hover::before {
  opacity: 1;
}

.closing-cta svg {
  transition: transform 0.4s ease;
}

.closing-cta:hover svg {
  transform: translateX(3px);
}

/* Email link */
.closing-email {
  font-family: 'Cinzel', serif;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 0.03em;
  position: relative;
  padding-bottom: 4px;
  transition: color 0.3s ease;
}

.closing-email::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-soft), transparent);
  transform: scaleX(0.6);
  transition: transform 0.4s ease, background 0.4s ease;
}

.closing-email:hover {
  color: var(--gold);
}

.closing-email:hover::after {
  transform: scaleX(1);
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

/* Locations group */
.closing-locations-group {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  width: 100%;
}

.closing-location-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.location-zone {
  font-family: 'Cinzel', serif;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.08em;
  min-width: 70px;
  text-align: right;
}

.location-address {
  font-family: 'Jost', sans-serif;
  font-size: 0.78rem;
  color: var(--gold);
  letter-spacing: 0.03em;
  font-weight: 400;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: color 0.3s ease;
  position: relative;
}

.location-address::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--gold-soft);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.location-address:hover::after {
  transform: scaleX(1);
}

.location-address svg {
  opacity: 0.5;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.location-address:hover svg {
  opacity: 1;
  transform: translate(2px, -2px);
}

/* Footer */
.closing-footer {
  width: 100%;
  padding-top: 0;
}

.closing-footer-line {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 169, 110, 0.3), transparent);
  margin: 0 auto 1.5rem;
}

.closing-copy {
  font-family: 'Jost', sans-serif;
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.3);
  letter-spacing: 0.12em;
  font-weight: 300;
}

.closing-copy-sep {
  color: rgba(201, 169, 110, 0.3);
  margin: 0 0.3rem;
}

.closing-copy .brand-be,
.closing-copy .brand-okey {
  font-size: 0.78rem;
  -webkit-text-fill-color: unset;
  background: none;
}

.closing-copy .brand-be {
  color: var(--gold);
}

.closing-copy .brand-okey {
  color: var(--gold-soft);
}

/* ========== FLOATING WHATSAPP CTA ========== */
.fab-whatsapp {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 200;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 4px 16px rgba(37, 211, 102, 0.35),
    0 2px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s cubic-bezier(0.23, 1, 0.32, 1),
              box-shadow 0.3s ease;
  opacity: 0;
  animation: fabIn 0.6s ease 3s forwards;
}

.fab-whatsapp:hover {
  transform: scale(1.1) translateY(-2px);
  box-shadow:
    0 6px 24px rgba(37, 211, 102, 0.45),
    0 3px 10px rgba(0, 0, 0, 0.12);
}

.fab-whatsapp:active {
  transform: scale(0.95);
}

/* Subtle pulse ring */
.fab-whatsapp::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, 0.3);
  animation: fabPulse 2.5s ease-in-out infinite;
}

@keyframes fabIn {
  from { opacity: 0; transform: translateY(20px) scale(0.8); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes fabPulse {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.15); opacity: 0; }
}

/* ========== FOCUS & ACCESSIBILITY ========== */
*:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

.navbar-links a:focus-visible,
.svc-cta:focus-visible,
.closing-cta:focus-visible,
.carousel-btn:focus-visible {
  outline-offset: 4px;
}

/* Active nav link */
.navbar-links a.is-active {
  color: var(--gold-deep);
}

.navbar-links a.is-active::after {
  transform: scaleX(1);
  transform-origin: left;
  background: var(--gold);
}

/* Skip to content (accessibility) */
.skip-link {
  position: fixed;
  top: -100%;
  left: 1rem;
  z-index: 10001;
  padding: 0.6rem 1.2rem;
  background: var(--gold);
  color: var(--white-pure);
  font-family: 'Jost', sans-serif;
  font-size: 0.8rem;
  border-radius: 0 0 8px 8px;
  transition: top 0.3s ease;
}

.skip-link:focus {
  top: 0;
}

/* ========== MOBILE: VERTICAL FALLBACK ========== */
@media (max-width: 768px) {
  html, body {
    overflow-x: hidden;
    overflow-y: auto;
    height: auto;
    scroll-behavior: smooth;
  }

  .bg-layer {
    position: fixed;
    width: 100%;
    height: 500vh;
    background: linear-gradient(
      180deg,
      var(--gold-bg) 0%,
      var(--cream) 12%,
      var(--gold-bg) 24%,
      var(--lilac-bg) 36%,
      var(--gold-bg) 48%,
      var(--cream) 60%,
      var(--gold-bg) 72%,
      var(--green-bg) 84%,
      var(--gold-bg) 100%
    );
  }

  .horizontal-container {
    flex-direction: column;
    height: auto;
    transform: none !important;
  }

  .panel {
    min-width: 100%;
    width: 100%;
    height: auto;
    min-height: 100vh;
    padding: 5rem 1.5rem;
  }

  .panel-about { min-width: 100%; }
  .panel-testimonials { min-width: 100%; }
  .panel-service, .panel-service-intro { min-width: 100%; }

  .testimonials-content { padding: 0 1rem; }

  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .panel-gallery { min-width: 100%; }
  .panel-closing {
    min-width: 100%;
    min-height: 100vh;
    padding: 4rem 1.5rem;
  }

  .closing-glow {
    width: 300px;
    height: 200px;
    top: 5%;
  }

  .closing-inner {
    gap: 2.5rem;
    padding: 0;
  }

  .closing-title {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .closing-subtitle {
    font-size: 0.85rem;
  }

  .closing-grid {
    flex-direction: column;
    gap: 2.5rem;
  }

  .closing-grid-divider {
    width: 60px;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(201, 169, 110, 0.25), transparent);
    align-self: center;
  }

  .closing-block {
    max-width: 100%;
  }

  .closing-location-item {
    flex-direction: column;
    gap: 0.3rem;
    text-align: center;
  }

  .location-zone {
    text-align: center;
    min-width: auto;
  }

  .gallery-content { padding: 0 1rem; }

  .gallery-carousel {
    height: 350px;
    perspective: 800px;
  }

  .carousel-slide {
    width: 240px;
    height: 300px;
  }

  .carousel-slide.is-prev {
    transform: translate(-50%, -50%) translateX(-180px) translateZ(-40px) rotateY(20deg) scale(0.75);
  }

  .carousel-slide.is-next {
    transform: translate(-50%, -50%) translateX(180px) translateZ(-40px) rotateY(-20deg) scale(0.75);
  }

  .carousel-slide.is-far-prev,
  .carousel-slide.is-far-next {
    opacity: 0;
  }

  .carousel-btn--prev { left: 0.5rem; }
  .carousel-btn--next { right: 0.5rem; }
  .carousel-btn {
    width: 36px;
    height: 36px;
  }

  .svc-align-left,
  .svc-align-right {
    justify-content: center;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    text-align: center;
  }

  .svc-align-left .service-card,
  .svc-align-right .service-card {
    text-align: center;
  }

  .text-glass {
    padding: 2rem 1.5rem;
  }

  .panel-service::before { display: none; }

  .about-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding: 0 1rem;
  }

  .about-photo {
    max-width: 280px;
    margin: 0 auto;
  }

  .hero-scroll-hint { display: none; }

  .carousel-caption {
    font-size: 0.6rem;
    padding: 1rem 0.8rem 0.6rem;
  }

  .carousel-dots {
    margin-top: 1rem;
  }

  .nav-progress { display: none; }

  .fab-whatsapp {
    bottom: 1.2rem;
    right: 1.2rem;
    width: 50px;
    height: 50px;
  }

  .svc-align-left .svc-number,
  .svc-align-right .svc-number {
    text-align: center;
  }

  .svc-align-left .service-line,
  .svc-align-right .service-line {
    margin: 0 auto 1.5rem;
  }

  .service-categories {
    gap: 0.5rem;
  }
}
