
body {
  margin: 0;
  font-family: 'Lora', serif;
  background: #0B0B2B url('images/celestial-bg.jpg') center top / cover no-repeat fixed;
  font-size: 20px;
  color: #EDEAE4;
  line-height: 1.6;
  overflow-x: hidden;
}
body.mandala-reveal {
  background: #0B0B2B url('images/celestial-bg.jpg') center top / cover no-repeat fixed;
}
#mandala-overlay {
  position: fixed;
  inset: 0;
  background: rgba(11,11,43,0.55);
  pointer-events: none;
  z-index: 0;
  animation: overlayFadeIn 5s ease-out;
}
@keyframes overlayFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Loader */
#loader {
  position: fixed;
  inset: 0;
  background: #0B0B2B;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 1s ease;
}
#loader img {
  max-width: 200px;
  animation: loaderPulse 2s ease-in-out infinite;
}
@keyframes loaderPulse {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.05); }
}

/* Navigation */
nav {
  position: fixed;
  top: 0; left: 0; width: 100%;
  background-color: rgba(8,8,30,0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  backdrop-filter: blur(8px);
  z-index: 1000;
  border-bottom: 1px solid rgba(201,168,76,0.15);
}
.nav-logo {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  margin: 0;
  padding: 0;
  line-height: 0;
  border: none;
}
.nav-logo:hover {
  border: none;
}
.nav-logo img {
  height: 80px;
  width: 80px;
  object-fit: cover;
  border-radius: 50%;
}
nav a {
  text-decoration: none;
  color: #C9A84C;
  font-weight: 500;
  font-size: 22px;
  margin: 0 20px;
  padding: 4px 4px;
  text-transform: uppercase;
  transition: color 0.3s ease, border-color 0.3s ease;
}
nav a:hover {
  color: #E8D48B;
  border-bottom: 2px solid #E8D48B;
}

/* Header */
header {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 100px 20px 40px;
  animation: fadeIn 1.5s ease-out;
}
header h1 {
  font-family: 'Cormorant Garamond', serif;
  color: #C9A84C;
  font-size: 46px;
  margin: 0;
  text-shadow: 0 0 30px rgba(201,168,76,0.3), 0 2px 12px rgba(0,0,0,0.8);
}
header p {
  font-style: italic;
  font-size: 18px;
  color: #B8B4AC;
  margin-top: 10px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.8);
}
.tagline {
  font-size: 16px;
  font-weight: 500;
  font-style: normal;
  color: #E8D48B;
  letter-spacing: 1px;
  margin-top: 14px;
  text-transform: uppercase;
  text-shadow: 0 2px 12px rgba(0,0,0,0.8);
}

/* Hero image (index page) */
.hero-image {
  display: block;
  max-width: 360px;
  margin: 30px auto 0;
  border-radius: 50%;
  box-shadow: 0 0 40px rgba(201,168,76,0.3), 0 0 80px rgba(201,168,76,0.1);
}

/* Fade-up animations */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s ease-out, transform 1s ease-out;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Sections */
section {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 80px auto;
  padding: 30px 40px;
  background: rgba(11,11,43,0.6);
  border: 1px solid rgba(201,168,76,0.1);
  border-radius: 12px;
  backdrop-filter: blur(6px);
}
/* Service card sections: no glass background, tighter spacing */
section:has(.svc-card) {
  background: none;
  border: none;
  backdrop-filter: none;
  padding: 0 20px;
  margin: 30px auto;
}

/* Expandable service cards */
.svc-card {
  background-color: rgba(15,15,50,0.7);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 8px;
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
  margin: 20px 0;
  overflow: hidden;
  backdrop-filter: blur(4px);
}
.svc-card-header {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px 28px;
  cursor: pointer;
  transition: background-color 0.2s;
}
.svc-card-header:hover {
  background-color: rgba(201,168,76,0.06);
}
.svc-meta {
  flex: 1;
  min-width: 0;
}
.svc-meta h2 {
  font-family: 'Cormorant Garamond', serif;
  color: #C9A84C;
  font-size: 26px;
  margin: 0 0 6px;
  line-height: 1.3;
}
.svc-excerpt {
  font-size: 16px;
  color: #B8B4AC;
  margin: 0;
  line-height: 1.5;
}
.svc-toggle {
  flex-shrink: 0;
  align-self: center;
  font-size: 14px;
  padding: 8px 16px;
  white-space: nowrap;
}
.svc-card .toggle-less {
  display: none;
}
.svc-card.expanded .toggle-more {
  display: none;
}
.svc-card.expanded .toggle-less {
  display: inline;
}
.svc-card.expanded .svc-excerpt {
  display: none;
}
.svc-card-body {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  padding: 0 28px;
  transition: max-height 0.5s ease, opacity 0.4s ease, padding 0.4s ease;
}
.svc-card.expanded .svc-card-body {
  max-height: 8000px;
  opacity: 1;
  padding: 0 28px 28px;
}
.svc-card-body p {
  margin: 0 0 14px;
}
.svc-pricing-heading {
  font-family: 'Cormorant Garamond', serif;
  color: #C9A84C;
  font-size: 22px;
  margin: 28px 0 12px;
  padding-top: 18px;
  border-top: 1px solid rgba(201,168,76,0.15);
}
.tier-policy {
  font-size: 14px;
  color: #9A968E;
  font-style: italic;
  margin: 12px 0 0;
}

/* Section sub-headings */
.section-heading {
  font-family: 'Cormorant Garamond', serif;
  color: #C9A84C;
  font-size: 32px;
  text-align: center;
  margin: 0 0 8px;
  text-shadow: 0 0 20px rgba(201,168,76,0.2);
}
.section-note {
  text-align: center;
  font-size: 15px;
  color: #B8B4AC;
  font-style: italic;
  margin: 0 0 30px;
}

/* CTA button */
.cta-center {
  text-align: center;
  margin-top: 30px;
}
.btn-cta {
  display: inline-block;
  background-color: #C9A84C;
  color: #0B0B2B;
  text-decoration: none;
  font-weight: 600;
  font-size: 17px;
  padding: 14px 32px;
  border-radius: 6px;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  border: none;
}
.btn-cta:hover {
  background-color: #E8D48B;
  box-shadow: 0 0 20px rgba(201,168,76,0.4);
  border: none;
}

/* Tier pricing cards */
.tier-card {
  background-color: rgba(15,15,50,0.7);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 8px;
  padding: 25px 30px;
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
  margin: 20px 0;
  backdrop-filter: blur(4px);
}
.tier-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 6px;
}
.tier-header h3 {
  font-family: 'Cormorant Garamond', serif;
  color: #C9A84C;
  font-size: 24px;
  margin: 0;
}
.tier-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 600;
  color: #E8D48B;
}
.tier-detail {
  font-size: 15px;
  color: #B8B4AC;
  font-style: italic;
  margin: 0 0 14px;
}
.tier-features {
  list-style: none;
  padding: 0;
  margin: 0 0 14px;
}
.tier-features li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 6px;
  font-size: 16px;
  line-height: 1.5;
}
.tier-features li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: #C9A84C;
  font-size: 12px;
  top: 3px;
}
.tier-best {
  font-size: 14px;
  color: #9A968E;
  margin: 0;
  padding-top: 10px;
  border-top: 1px solid rgba(201,168,76,0.1);
}

/* Suggestion list (Date Selection) */
.suggestion-cat {
  color: #C9A84C;
  font-size: 16px;
  margin: 18px 0 8px;
  font-weight: 600;
}
.suggestion-list {
  list-style: none;
  padding: 0;
  margin: 0 0 10px;
  columns: 2;
  column-gap: 24px;
}
.suggestion-list li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 4px;
  font-size: 15px;
  line-height: 1.45;
  break-inside: avoid;
}
.suggestion-list li::before {
  content: '·';
  position: absolute;
  left: 4px;
  color: #C9A84C;
  font-weight: bold;
}
@media (max-width: 600px) {
  .suggestion-list { columns: 1; }
}

/* Add-on rows */
.addon-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.addon-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid rgba(201,168,76,0.1);
  gap: 20px;
}
.addon-row:last-child {
  border-bottom: none;
}
.addon-info {
  flex: 1;
}
.addon-info strong {
  color: #C9A84C;
  display: block;
  font-size: 17px;
  margin-bottom: 4px;
}
.addon-info span {
  font-size: 15px;
  color: #B8B4AC;
}
.addon-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 600;
  color: #E8D48B;
  white-space: nowrap;
  flex-shrink: 0;
}

/* Policy grid */
.policy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 20px;
}
.policy-item {
  background-color: rgba(15,15,50,0.5);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: 8px;
  padding: 20px;
  text-align: center;
}
.policy-item h3 {
  font-family: 'Cormorant Garamond', serif;
  color: #C9A84C;
  font-size: 20px;
  margin: 0 0 10px;
}
.policy-item p {
  font-size: 15px;
  color: #B8B4AC;
  margin: 0;
  line-height: 1.5;
}

/* Buttons */
button {
  background-color: #C9A84C;
  color: #0B0B2B;
  border: none;
  padding: 10px 20px;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 600;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}
button:hover {
  background-color: #E8D48B;
  box-shadow: 0 0 15px rgba(201,168,76,0.4);
}

/* Form inputs */
input[type="text"],
input[type="email"],
textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
  background-color: rgba(15,15,50,0.6);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 4px;
  color: #EDEAE4;
  font-family: 'Lora', serif;
  font-size: 16px;
  transition: border-color 0.3s ease;
  box-sizing: border-box;
}
input[type="text"]:focus,
input[type="email"]:focus,
textarea:focus {
  outline: none;
  border-color: #C9A84C;
  box-shadow: 0 0 8px rgba(201,168,76,0.2);
}
textarea {
  height: 120px;
  resize: vertical;
}
label {
  color: #C9A84C;
  font-size: 16px;
}
#form-status {
  margin-top: 10px;
}

/* Footer */
footer {
  position: relative;
  z-index: 1;
  text-align: center;
  font-size: 13px;
  color: #9A968E;
  padding: 20px 0 40px;
}
@keyframes fadeIn {
  from {opacity: 0;}
  to {opacity: 1;}
}

/* Language select */
.lang-select {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 30px;
  font-family: 'Lora', serif;
  font-size: 14px;
  font-weight: 600;
  color: #0B0B2B;
  background-color: #C9A84C;
  border: 1px solid #C9A84C;
  border-radius: 4px;
  padding: 6px 10px;
  cursor: pointer;
  outline: none;
}
.lang-select:hover {
  background-color: #E8D48B;
}
.lang-select option {
  background-color: #0B0B2B;
  color: #EDEAE4;
}

/* Brand stacked (RU mode) */
[data-i18n-brand] .brand-en {
  display: block;
  font-size: 1em;
}
[data-i18n-brand] .brand-ru {
  display: block;
  font-size: 0.55em;
  opacity: 0.75;
  margin-top: 2px;
}

/* Post cards */
.post-card {
  background-color: rgba(15,15,50,0.7);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 8px;
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
  margin: 20px 0;
  overflow: hidden;
  backdrop-filter: blur(4px);
}
.post-card-header {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 25px;
  cursor: pointer;
  transition: background-color 0.2s;
}
.post-card-header:hover {
  background-color: rgba(201,168,76,0.06);
}
.post-thumb {
  width: 120px;
  height: 90px;
  object-fit: cover;
  border-radius: 6px;
  flex-shrink: 0;
}
.post-meta {
  flex: 1;
  min-width: 0;
}
.post-meta time {
  font-size: 13px;
  color: #9A968E;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.post-meta h2 {
  color: #C9A84C;
  font-size: 22px;
  margin: 6px 0 8px;
  line-height: 1.3;
}
.post-excerpt {
  font-size: 16px;
  color: #B8B4AC;
  margin: 0;
  line-height: 1.5;
}
.post-toggle {
  flex-shrink: 0;
  align-self: center;
  font-size: 14px;
  padding: 8px 16px;
  white-space: nowrap;
}
.post-card .toggle-less {
  display: none;
}
.post-card.expanded .toggle-more {
  display: none;
}
.post-card.expanded .toggle-less {
  display: inline;
}
.post-card.expanded .post-excerpt {
  display: none;
}

/* Post card body — collapsed by default */
.post-card-body {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  padding: 0 25px;
  transition: max-height 0.5s ease, opacity 0.4s ease, padding 0.4s ease;
}
.post-card.expanded .post-card-body {
  max-height: 3000px;
  opacity: 1;
  padding: 0 25px 25px;
}
.post-hero {
  width: 100%;
  border-radius: 6px;
  margin-bottom: 20px;
}
.post-card-body p {
  margin: 0 0 14px;
}

/* Links within content */
section a {
  color: #C9A84C;
  text-decoration: none;
  border-bottom: 1px solid rgba(201,168,76,0.3);
  transition: color 0.3s ease, border-color 0.3s ease;
}
section a:hover {
  color: #E8D48B;
  border-bottom-color: #E8D48B;
}

/* Calculator iframe wrapper */
.calc-wrapper {
  position: fixed;
  top: 50px;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}
.calc-wrapper iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: none;
}

/* Responsive */
@media (max-width: 768px) {
  header h1 {font-size: 34px;}
  header p {font-size: 16px;}
  nav {
    flex-wrap: wrap;
    padding: 12px 10px;
  }
  nav a {
    font-size: 16px;
    margin: 0 8px;
    padding: 4px 2px;
  }
  .nav-logo {
    left: 8px;
  }
  .nav-logo img {
    height: 60px;
    width: 60px;
  }
  .lang-select {
    position: static;
    transform: none;
    margin-top: 6px;
    align-self: center;
  }
  .hero-image {
    max-width: 260px;
  }
  .post-card-header {
    flex-direction: column;
    gap: 12px;
    padding: 16px;
  }
  .post-thumb {
    width: 100%;
    height: 180px;
  }
  .post-meta h2 {
    font-size: 20px;
  }
  .post-toggle {
    align-self: flex-start;
  }
  .post-card-body {
    padding: 0 16px;
  }
  .post-card.expanded .post-card-body {
    padding: 0 16px 16px;
  }
  .svc-card-header {
    flex-direction: column;
    gap: 12px;
    padding: 18px;
  }
  .svc-meta h2 {
    font-size: 22px;
  }
  .svc-toggle {
    align-self: flex-start;
  }
  .svc-card-body {
    padding: 0 18px;
  }
  .svc-card.expanded .svc-card-body {
    padding: 0 18px 18px;
  }
  .section-heading {
    font-size: 26px;
  }
  .tier-header {
    flex-direction: column;
    gap: 4px;
  }
  .tier-price {
    font-size: 24px;
  }
  .addon-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
  .addon-price {
    font-size: 18px;
  }
  .policy-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}
