/* Thisdomaindontexist123 — Ethereal Prism · Plus Jakarta + Cormorant */

:root {
  --primary: #B4D4EE;
  --secondary: #E8E1D9;
  --accent: #8A2BE2;
  --bg: #FFFFFF;
  --silver-mist: rgba(180, 190, 200, 0.45);
  --text: #1a1f26;
  --text-muted: #5c6674;
  --radius-card: 2.5rem;
  --shadow-soft: 0 1.25rem 3rem rgba(26, 31, 38, 0.08);
  --font-sans: "Plus Jakarta Sans", system-ui, sans-serif;
  --font-serif: "Cormorant Garamond", Georgia, serif;
  --header-h: 4.25rem;
  --maxw: 72rem;
}

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

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

body {
  overflow-x: hidden;
  margin: 0;
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  min-height: 100vh;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-card);
}

a {
  color: var(--accent);
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.2em;
}

a:hover {
  filter: brightness(0.92);
}

.container {
  width: min(100% - 2rem, var(--maxw));
  margin-inline: auto;
}

.container--narrow {
  max-width: 42rem;
}

/* —— Cookie banner —— */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  padding: 1rem;
  transform: translateY(100%);
  transition: transform 0.45s ease, opacity 0.45s ease;
  opacity: 0;
  pointer-events: none;
}

.cookie-banner.is-visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.cookie-banner__inner {
  max-width: var(--maxw);
  margin-inline: auto;
  padding: 1.25rem 1.5rem;
  background: rgba(255, 255, 255, 0.96);
  border: 0.5px solid var(--silver-mist);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(12px);
  display: grid;
  gap: 1rem;
}

@media (min-width: 640px) {
  .cookie-banner__inner {
    grid-template-columns: 1fr auto;
    align-items: center;
  }
}

.cookie-banner__text {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: flex-end;
}

/* —— Header (burger always in header bar) —— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 0.5px solid var(--silver-mist);
  backdrop-filter: blur(14px);
}

.site-header__bar {
  width: min(100% - 2rem, var(--maxw));
  margin-inline: auto;
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.site-header__title {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(1.05rem, 2.5vw, 1.35rem);
  color: var(--text);
  text-decoration: none;
  letter-spacing: 0.02em;
  flex-shrink: 0;
}

.nav-desktop {
  flex: 1;
  display: none;
  justify-content: center;
  min-width: 0;
}

.nav-desktop__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.35rem 1rem;
}

.nav-desktop__list a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 500;
  padding: 0.35rem 0;
}

.nav-desktop__list a:hover {
  color: var(--accent);
}

/* Burger (display toggled in media queries below — must stay after base .burger) */
.burger {
  order: 999;
  flex-shrink: 0;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  border: 0.5px solid var(--silver-mist);
  background: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  transition: box-shadow 0.3s ease, background 0.3s ease;
  animation: breathe 4s ease-in-out infinite;
}

.burger:hover {
  box-shadow: 0 0 0 6px rgba(138, 43, 226, 0.08);
  background: var(--secondary);
}

.burger__line {
  width: 1.15rem;
  height: 2px;
  background: var(--text);
  border-radius: 1px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.burger[aria-expanded="true"] .burger__line:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.burger[aria-expanded="true"] .burger__line:nth-child(2) {
  opacity: 0;
}

.burger[aria-expanded="true"] .burger__line:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* Breakpoint: burger only when width ≤ 1023px; from 1024px — full nav, burger hidden */
@media (max-width: 1023px) {
  .nav-desktop {
    display: none;
  }

  .burger {
    display: flex;
  }
}

@media (min-width: 1024px) {
  .nav-desktop {
    display: flex;
  }

  .burger {
    display: none;
  }
}

@keyframes breathe {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(138, 43, 226, 0.06);
  }
  50% {
    box-shadow: 0 0 0 8px rgba(138, 43, 226, 0.04);
  }
}

/* Nav overlay + panel (separate from header) */
.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 120;
  background: rgba(26, 31, 38, 0.35);
  backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.nav-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.nav-mobile {
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 130;
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.98) 0%, var(--secondary) 100%);
  padding: 2rem 1.5rem 3rem;
  overflow-y: auto;
  transform: translateY(-1rem);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, transform 0.35s ease, visibility 0.35s ease;
  border-top: 0.5px solid var(--silver-mist);
}

.nav-mobile.is-open {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.nav-mobile__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.5rem;
  max-width: 24rem;
  margin-inline: auto;
}

.nav-mobile__list a {
  display: block;
  padding: 0.85rem 1rem;
  border-radius: 1rem;
  border: 0.5px solid var(--silver-mist);
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
  background: rgba(255, 255, 255, 0.65);
}

.nav-mobile__list a:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* —— Hero: image under text —— */
.hero {
  position: relative;
  min-height: min(85vh, 40rem);
  width: 100vw;
  margin-left: calc(50% - 50vw);
  display: grid;
  align-items: stretch;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-color: var(--secondary);
  background-image: url("../pictures/freepik_energy-healing-and-holistic-therapy-centers_0010.webp");
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.92) 0%,
    rgba(255, 255, 255, 0.78) 45%,
    rgba(180, 212, 238, 0.55) 100%
  );
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  width: min(100% - 2rem, 40rem);
  margin-inline: auto;
  padding: clamp(3rem, 8vw, 6rem) 0;
  animation: fadeUp 1s ease forwards;
}

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

.hero__eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 0 0 0.75rem;
}

.hero__title {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1.15;
  margin: 0 0 1rem;
  color: var(--text);
}

.hero__lead {
  margin: 0 0 1.75rem;
  color: var(--text-muted);
  font-weight: 300;
  font-size: 1.05rem;
}

/* —— Buttons —— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.95rem;
  cursor: pointer;
  border: 0.5px solid var(--silver-mist);
  background: transparent;
  color: var(--text);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.5);
  transition: background 0.3s ease, box-shadow 0.3s ease, color 0.3s ease;
  text-decoration: none;
}

.btn:hover {
  background: rgba(138, 43, 226, 0.06);
  box-shadow: inset 0 0 1.5rem rgba(180, 212, 238, 0.5), 0 0.5rem 1.5rem rgba(138, 43, 226, 0.08);
}

.btn--hero {
  border-color: rgba(138, 43, 226, 0.35);
  color: var(--accent);
}

.btn--primary {
  background: rgba(138, 43, 226, 0.12);
  color: var(--accent);
}

.btn--cookie {
  font-size: 0.85rem;
}

.btn--submit {
  margin-top: 0.5rem;
  width: 100%;
  max-width: 16rem;
}

/* —— Sections —— */
.section {
  padding: clamp(3rem, 6vw, 5rem) 0;
}

.section--alt {
  background: linear-gradient(180deg, rgba(232, 225, 217, 0.35) 0%, transparent 100%);
}

.section__head {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto 2.5rem;
}

.section__title {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 3.5vw, 2.35rem);
  font-weight: 600;
  margin: 0 0 0.75rem;
  color: var(--text);
}

.section__intro {
  margin: 0;
  color: var(--text-muted);
  font-weight: 300;
}

.subsection-title {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  margin: 0 0 0.75rem;
  font-weight: 600;
}

/* Grid layouts */
.grid-two {
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 768px) {
  .grid-two {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }

  .grid-two--reverse .card-media {
    order: -1;
  }
}

.grid-two__text p {
  margin: 0 0 1rem;
  color: var(--text-muted);
  font-weight: 300;
}

.grid-two__text p:last-child {
  margin-bottom: 0;
}

.card-media {
  margin: 0;
  border-radius: var(--radius-card);
  overflow: hidden;
  border: 0.5px solid var(--silver-mist);
  box-shadow: var(--shadow-soft);
}

.card-media img {
  border-radius: var(--radius-card);
}

.grid-products {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .grid-products {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}

.product-card {
  padding: 1.75rem;
  border-radius: var(--radius-card);
  border: 0.5px solid var(--silver-mist);
  background: rgba(255, 255, 255, 0.85);
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.product-card__title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  margin: 0;
  font-weight: 600;
}

.product-card__desc {
  margin: 0;
  flex: 1;
  font-size: 0.95rem;
  color: var(--text-muted);
  font-weight: 300;
}

.product-card__price {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--accent);
}

.timeline {
  max-width: 36rem;
  margin: 0 auto;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 1rem;
}

.timeline li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
  padding: 1rem 1.25rem;
  border-radius: 1.25rem;
  border: 0.5px solid var(--silver-mist);
  background: rgba(255, 255, 255, 0.9);
}

.timeline__step {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 600;
  background: var(--primary);
  color: var(--text);
}

.grid-benefits {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .grid-benefits {
    grid-template-columns: repeat(3, 1fr);
  }
}

.benefit-card {
  padding: 1.5rem;
  border-radius: var(--radius-card);
  border: 0.5px solid var(--silver-mist);
  background: rgba(255, 255, 255, 0.95);
}

.benefit-card__title {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  margin: 0 0 0.5rem;
}

.benefit-card p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--text-muted);
  font-weight: 300;
}

.benefits-footnote {
  margin-top: 2rem;
}

.benefits-footnote .section__intro {
  margin-bottom: 0;
}

.section--contact {
  padding-bottom: 4rem;
}

.domain-ref {
  font-weight: 500;
  color: var(--text);
}

.grid-contact {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 900px) {
  .grid-contact {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}

.contact-info p {
  margin: 0 0 1rem;
  color: var(--text-muted);
}

.contact-info__map-note {
  font-size: 0.88rem;
  margin-top: 1.5rem;
}

.contact-form {
  display: grid;
  gap: 1rem;
  padding: 1.75rem;
  border-radius: var(--radius-card);
  border: 0.5px solid var(--silver-mist);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-soft);
}

.form-field {
  display: grid;
  gap: 0.35rem;
}

.form-field__label {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
}

.form-field input,
.form-field textarea {
  width: 100%;
  padding: 0.65rem 0.85rem;
  border-radius: 0.75rem;
  border: 0.5px solid var(--silver-mist);
  font-family: inherit;
  font-size: 1rem;
  background: var(--bg);
}

.form-field input:focus,
.form-field textarea:focus {
  outline: 2px solid rgba(138, 43, 226, 0.25);
  outline-offset: 2px;
}

.form-check {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.65rem;
  align-items: start;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.form-check input {
  margin-top: 0.25rem;
}

/* —— Footer —— */
.site-footer {
  padding: 2.5rem 0 3rem;
  border-top: 0.5px solid var(--silver-mist);
  background: linear-gradient(0deg, rgba(232, 225, 217, 0.45) 0%, transparent 100%);
}

.site-footer__grid {
  display: grid;
  gap: 2rem;
}

.footer-nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 1rem;
}

.footer-nav__list a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 500;
}

.footer-nav__list a:hover {
  color: var(--accent);
}

.site-footer__legal {
  text-align: center;
}

.legal-links {
  list-style: none;
  margin: 0 0 1rem;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 1.25rem;
}

.legal-links a {
  font-size: 0.88rem;
  color: var(--accent);
}

.site-footer__meta,
.site-footer__domain {
  margin: 0.35rem 0;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.site-footer__meta a {
  color: var(--text-muted);
}

/* —— Legal / inner pages —— */
.page-main {
  padding: clamp(2rem, 5vw, 4rem) 0 4rem;
}

.page-hero {
  position: relative;
  min-height: 14rem;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  display: flex;
  align-items: flex-end;
  margin-bottom: 2rem;
  overflow: hidden;
}

.page-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.page-hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.88) 0%, rgba(255, 255, 255, 0.95) 100%);
  z-index: 1;
}

/* Legal inner banners: CSS-only gradients (no image files — avoids duplicate src across pages) */
.page-hero--legal {
  align-items: center;
  padding-top: 1rem;
}

.page-hero--legal-v1 {
  background: linear-gradient(145deg, rgba(180, 212, 238, 0.55) 0%, rgba(255, 255, 255, 0.96) 52%, rgba(232, 225, 217, 0.45) 100%);
}

.page-hero--legal-v2 {
  background: linear-gradient(160deg, rgba(232, 225, 217, 0.65) 0%, rgba(255, 255, 255, 0.97) 48%, rgba(180, 212, 238, 0.4) 100%);
}

.page-hero--legal-v3 {
  background: linear-gradient(125deg, rgba(255, 255, 255, 0.95) 0%, rgba(180, 212, 238, 0.35) 45%, rgba(232, 225, 217, 0.55) 100%);
}

.page-hero--legal-v4 {
  background: linear-gradient(175deg, rgba(138, 43, 226, 0.08) 0%, rgba(255, 255, 255, 0.96) 50%, rgba(180, 212, 238, 0.42) 100%);
}

.legal-card--accent-a {
  border-top: 3px solid rgba(180, 212, 238, 0.9);
}

.legal-card--accent-b {
  border-top: 3px solid rgba(138, 43, 226, 0.35);
}

.legal-card--accent-c {
  border-top: 3px solid rgba(232, 225, 217, 0.95);
}

.page-hero__inner {
  position: relative;
  z-index: 2;
  width: min(100% - 2rem, var(--maxw));
  margin-inline: auto;
  padding: 2rem 0;
}

.page-hero__title {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  margin: 0;
}

.prose {
  max-width: 48rem;
  margin-inline: auto;
}

.prose h2 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  margin: 2rem 0 0.75rem;
}

.prose p,
.prose li {
  color: var(--text-muted);
  font-weight: 300;
}

.prose p {
  margin: 0 0 1rem;
}

.prose ul {
  margin: 0 0 1rem;
  padding-left: 1.25rem;
}

p.date {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0 0 2rem;
}

.legal-grid {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
}

@media (min-width: 768px) {
  .legal-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.legal-card {
  padding: 1.5rem;
  border-radius: var(--radius-card);
  border: 0.5px solid var(--silver-mist);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-soft);
}

.legal-card img {
  margin-bottom: 1rem;
}

.legal-card h3 {
  font-family: var(--font-serif);
  margin: 0 0 0.5rem;
  font-size: 1.15rem;
}

.legal-card p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--text-muted);
  font-weight: 300;
}

.legal-card--text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Thank you */
.thank-layout {
  min-height: 60vh;
  display: grid;
  place-items: center;
  padding: 3rem 1rem;
}

.thank-card {
  max-width: 28rem;
  text-align: center;
  padding: 2.5rem 2rem;
  border-radius: var(--radius-card);
  border: 0.5px solid var(--silver-mist);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-soft);
}

.thank-card h1 {
  font-family: var(--font-serif);
  font-size: 2rem;
  margin: 0 0 1rem;
}

.thank-card p {
  color: var(--text-muted);
  margin: 0 0 1.5rem;
  font-weight: 300;
}

@media (max-width: 420px) {
  .nav-desktop__list {
    gap: 0.25rem 0.5rem;
  }
}
