:root {
  --warm-white: #f6efe5;
  --soft-black: #1d1a16;
  --stone: #e1d2c0;
  --taupe: #78856f;
  --green: #7f9272;
  --earth: #6f9a82;
  --clay: #9ab79c;
  --sand: #e7eee3;
  --blue: #6f93ad;
  --deep-blue: #315f68;
  --mist: #cfddd2;
  --paper: rgba(250, 246, 239, 0.86);
  --line: rgba(29, 26, 22, 0.12);
  --shadow: 0 16px 36px rgba(47, 93, 109, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--soft-black);
  background:
    radial-gradient(circle at 84% 4%, rgba(127, 146, 114, 0.2), transparent 25rem),
    linear-gradient(180deg, rgba(231, 238, 227, 0.9), rgba(246, 239, 229, 0.98) 38rem),
    var(--warm-white);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

body::selection {
  background: rgba(111, 143, 168, 0.25);
}

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

button {
  font: inherit;
}

.ambient {
  position: fixed;
  z-index: -1;
  width: 42vw;
  height: 42vw;
  border-radius: 999px;
  filter: blur(72px);
  opacity: 0.14;
  pointer-events: none;
}

.ambient-one {
  top: 18%;
  right: -18%;
  background: var(--blue);
}

.ambient-two {
  bottom: 10%;
  left: -20%;
  background: var(--clay);
}

.site-header {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: min(1180px, calc(100% - 32px));
  padding: 12px 14px;
  border: 1px solid rgba(244, 241, 236, 0.44);
  border-radius: 8px;
  background: rgba(29, 26, 22, 0.28);
  color: var(--warm-white);
  backdrop-filter: blur(24px);
  transform: translateX(-50%);
}

.brand,
.nav-links,
.site-footer nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

.brand {
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 600;
}

.brand-mark {
  width: 18px;
  height: 18px;
  border: 1px solid currentColor;
  border-radius: 50%;
  box-shadow: inset 0 0 0 5px rgba(244, 241, 236, 0.18);
}

.nav-links {
  justify-content: center;
  font-size: 0.82rem;
  color: rgba(244, 241, 236, 0.82);
}

.header-action {
  justify-self: end;
  padding: 9px 14px;
  border: 1px solid rgba(246, 239, 229, 0.38);
  border-radius: 999px;
  font-size: 0.82rem;
}

.hero {
  position: relative;
  display: grid;
  min-height: 390px;
  padding: 96px max(24px, calc((100vw - 1180px) / 2)) 46px;
  overflow: hidden;
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(29, 26, 22, 0.72), rgba(49, 95, 104, 0.32) 42%, rgba(246, 239, 229, 0.05) 72%),
    linear-gradient(180deg, rgba(29, 26, 22, 0.18), transparent 48%, rgba(246, 239, 229, 0.82));
}

.hero-content {
  position: relative;
  align-self: center;
  width: min(620px, 100%);
  color: var(--warm-white);
  text-shadow: 0 2px 18px rgba(29, 26, 22, 0.32);
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--earth);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: rgba(246, 239, 229, 0.78);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: Marcellus, Georgia, serif;
  font-weight: 400;
  line-height: 1.04;
}

h1 {
  max-width: 540px;
  margin-bottom: 18px;
  font-size: clamp(2.15rem, 4vw, 3.45rem);
  line-height: 1.12;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(1.26rem, 2vw, 1.9rem);
  line-height: 1.18;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.12rem;
  line-height: 1.2;
}

.hero-copy {
  max-width: 590px;
  margin-bottom: 0;
  color: rgba(246, 239, 229, 0.84);
  font-size: clamp(1rem, 1.35vw, 1.18rem);
}

.recommendation-meta,
.card-topline {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.primary-button,
.secondary-button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  transition: transform 450ms ease, box-shadow 450ms ease, background 450ms ease;
}

.primary-button {
  background: linear-gradient(135deg, var(--green), var(--deep-blue));
  color: var(--warm-white);
  box-shadow: 0 14px 34px rgba(47, 93, 109, 0.22);
}

.secondary-button {
  border: 1px solid rgba(246, 239, 229, 0.38);
  color: var(--warm-white);
}

.primary-button:hover,
.secondary-button:hover,
.header-action:hover {
  transform: translateY(-2px);
}

.hero-player {
  position: relative;
  align-self: end;
  width: min(560px, 100%);
  border: 1px solid rgba(244, 241, 236, 0.38);
  border-radius: 8px;
  background: rgba(244, 241, 236, 0.16);
  color: var(--warm-white);
  backdrop-filter: blur(26px);
}

.hero-player {
  display: grid;
  grid-template-columns: auto auto 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 16px;
}

.guide-avatar {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(246, 239, 229, 0.42);
  border-radius: 50%;
  object-fit: cover;
  object-position: center 36%;
}

.play-button,
.mini-player {
  border: 0;
  cursor: pointer;
}

.play-button {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 50%;
  background: var(--warm-white);
}

.play-button span {
  width: 0;
  height: 0;
  margin-left: 4px;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 12px solid var(--deep-blue);
}

.track-meta {
  display: grid;
  gap: 2px;
}

.track-meta span,
.card-topline,
.recommendation-meta,
.membership-card span {
  color: rgba(244, 241, 236, 0.66);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
}

.sound-wave {
  display: flex;
  align-items: center;
  gap: 5px;
  height: 32px;
}

.sound-wave i,
.mini-player em {
  display: block;
  width: 4px;
  border-radius: 999px;
  background: var(--blue);
  animation: breathe-wave 2.8s ease-in-out infinite;
}

.sound-wave i {
  height: 16px;
}

.sound-wave i:nth-child(2),
.mini-player em:nth-child(3) {
  animation-delay: 180ms;
}

.sound-wave i:nth-child(3),
.mini-player em:nth-child(4) {
  animation-delay: 360ms;
}

.sound-wave i:nth-child(4),
.mini-player em:nth-child(5) {
  animation-delay: 540ms;
}

@keyframes breathe-wave {
  0%,
  100% {
    transform: scaleY(0.58);
    opacity: 0.58;
  }
  50% {
    transform: scaleY(1.45);
    opacity: 1;
  }
}

.section {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 68px 0;
}

.intro-band {
  border-bottom: 1px solid var(--line);
}

.reviews-section {
  width: 100%;
  max-width: none;
  padding-right: max(16px, calc((100vw - 1180px) / 2));
  padding-left: max(16px, calc((100vw - 1180px) / 2));
  overflow: hidden;
}

.compact-heading {
  max-width: 520px;
}

.reviews-scroll {
  display: grid;
  grid-auto-columns: minmax(280px, 390px);
  grid-auto-flow: column;
  gap: 14px;
  overflow-x: auto;
  padding: 4px 0 18px;
  scroll-snap-type: x proximity;
  scrollbar-color: var(--green) rgba(127, 146, 114, 0.14);
}

.reviews-scroll::-webkit-scrollbar {
  height: 8px;
}

.reviews-scroll::-webkit-scrollbar-track {
  background: rgba(127, 146, 114, 0.12);
  border-radius: 999px;
}

.reviews-scroll::-webkit-scrollbar-thumb {
  background: var(--green);
  border-radius: 999px;
}

.review-card {
  display: grid;
  min-height: 260px;
  align-content: space-between;
  padding: 24px;
  border: 1px solid rgba(127, 146, 114, 0.24);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(250, 246, 239, 0.94), rgba(231, 238, 227, 0.74)),
    var(--paper);
  box-shadow: var(--shadow);
  scroll-snap-align: start;
}

.review-card p {
  color: rgba(29, 26, 22, 0.72);
  font-family: Marcellus, Georgia, serif;
  font-size: 1.14rem;
  line-height: 1.34;
}

.review-card span {
  color: var(--deep-blue);
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
}

.intro-grid,
.emotional-section,
.testimonial-section,
.about-section,
.membership-section {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.92fr);
  gap: clamp(28px, 5vw, 68px);
  align-items: center;
}

.intro-grid p,
.emotional-copy p,
.about-section > p,
.membership-copy p {
  color: rgba(29, 26, 22, 0.66);
  font-size: 0.98rem;
}

.section-heading {
  max-width: 640px;
  margin-bottom: 34px;
}

.category-grid,
.shop-grid,
.meditation-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.category-card,
.shop-card,
.meditation-card,
.membership-card,
.recommendation,
.testimonial-list article,
.quote-panel {
  border: 1px solid rgba(27, 27, 27, 0.09);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.category-card,
.shop-card,
.meditation-card,
.testimonial-list article {
  padding: 24px;
  transition: transform 600ms ease, border-color 600ms ease, background 600ms ease;
}

.category-card:hover,
.shop-card:hover,
.meditation-card:hover,
.testimonial-list article:hover {
  transform: translateY(-4px);
  border-color: rgba(127, 146, 114, 0.34);
  background: rgba(250, 246, 239, 0.96);
}

.category-card span {
  display: block;
  margin-bottom: 30px;
  color: var(--earth);
  font-size: 0.82rem;
  font-weight: 700;
}

.category-card p,
.shop-card p,
.meditation-card p,
.testimonial-list p,
.quote-panel span,
.site-footer p {
  color: rgba(29, 26, 22, 0.62);
}

.shop-card {
  display: grid;
  min-height: 360px;
}

.shop-card .card-topline {
  color: var(--deep-blue);
}

.shop-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  align-self: end;
  margin-top: 16px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.shop-audio {
  display: grid;
  grid-template-columns: auto auto minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  align-self: end;
  margin-top: 22px;
  padding: 10px;
  border: 1px solid rgba(246, 239, 229, 0.58);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(49, 95, 104, 0.12), rgba(246, 239, 229, 0.72)),
    rgba(127, 146, 114, 0.12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.36);
}

.shop-audio img {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 36%;
}

.product-play {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: var(--warm-white);
  cursor: pointer;
}

.product-play span {
  width: 0;
  height: 0;
  margin-left: 3px;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 10px solid var(--deep-blue);
}

.shop-audio small {
  display: block;
  color: rgba(29, 26, 22, 0.52);
  font-size: 0.67rem;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
}

.shop-audio strong {
  display: block;
  overflow: hidden;
  color: var(--soft-black);
  font-size: 0.86rem;
  line-height: 1.2;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.product-wave {
  display: flex;
  align-items: center;
  gap: 4px;
}

.product-wave i {
  display: block;
  width: 4px;
  height: 18px;
  border-radius: 999px;
  background: var(--blue);
  animation: breathe-wave 2.8s ease-in-out infinite;
}

.product-wave i:nth-child(2) {
  animation-delay: 180ms;
}

.product-wave i:nth-child(3) {
  animation-delay: 360ms;
}

.product-wave i:nth-child(4) {
  animation-delay: 540ms;
}

.shop-card-footer strong {
  color: var(--deep-blue);
  font-size: 1.2rem;
}

.shop-card-footer a {
  display: inline-flex;
  min-height: 38px;
  min-width: 92px;
  align-items: center;
  justify-content: center;
  padding: 8px 15px;
  border-radius: 999px;
  background: rgba(111, 154, 130, 0.14);
  color: var(--deep-blue);
  font-size: 0.9rem;
  font-weight: 700;
}

.shop-card-footer a[data-loading="true"] {
  pointer-events: none;
  opacity: 0.72;
}

.emotional-section {
  width: 100%;
  max-width: none;
  padding: 72px max(24px, calc((100vw - 1180px) / 2));
  background:
    linear-gradient(135deg, rgba(91, 126, 82, 0.94), rgba(47, 86, 104, 0.74)),
    var(--earth);
  color: var(--warm-white);
}

.emotional-section .eyebrow,
.emotional-copy p {
  color: rgba(244, 241, 236, 0.72);
}

.emotion-panel {
  display: grid;
  gap: 14px;
}

.emotion-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.emotion-chip {
  min-height: 40px;
  padding: 9px 13px;
  border: 1px solid rgba(244, 241, 236, 0.22);
  border-radius: 999px;
  background: rgba(244, 241, 236, 0.08);
  color: rgba(244, 241, 236, 0.82);
  cursor: pointer;
  transition: background 360ms ease, color 360ms ease, transform 360ms ease;
}

.emotion-chip:hover,
.emotion-chip.active {
  background: var(--warm-white);
  color: var(--earth);
  transform: translateY(-1px);
}

.recommendation {
  display: grid;
  gap: 26px;
  padding: 24px;
  background: rgba(246, 239, 229, 0.13);
  color: var(--warm-white);
  box-shadow: none;
}

.recommendation h3 {
  font-family: Marcellus, Georgia, serif;
  font-size: clamp(1.25rem, 2.05vw, 1.72rem);
  font-weight: 400;
}

.recommendation p {
  color: rgba(244, 241, 236, 0.74);
}

.large-card {
  grid-column: span 2;
  min-height: 300px;
  background:
    linear-gradient(135deg, rgba(91, 126, 82, 0.95), rgba(47, 86, 104, 0.7)),
    var(--earth);
  color: var(--warm-white);
}

.large-card p {
  color: rgba(244, 241, 236, 0.72);
}

.mini-player {
  display: flex;
  align-items: center;
  gap: 7px;
  width: 100%;
  max-width: 260px;
  height: 48px;
  margin-top: 42px;
  padding: 0 17px;
  border-radius: 999px;
  background: rgba(244, 241, 236, 0.16);
}

.mini-player span {
  width: 0;
  height: 0;
  margin-right: 8px;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 10px solid var(--warm-white);
}

.mini-player em {
  height: 18px;
}

.quote-panel {
  padding: clamp(24px, 4vw, 44px);
}

.quote-panel p {
  color: rgba(29, 26, 22, 0.66);
  font-size: 0.98rem;
}

.quote-panel h2 {
  margin-bottom: 22px;
}

.quote-panel p:not(.eyebrow) {
  margin-bottom: 16px;
}

.testimonial-list {
  display: grid;
  gap: 14px;
}

.about-section {
  display: block;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.about-portrait {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  border-radius: 8px;
  background: var(--sand);
  box-shadow: var(--shadow);
}

.about-portrait img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 38%;
  transform: scale(1.02);
}

.about-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(246, 239, 229, 0.94) 0%, rgba(246, 239, 229, 0.8) 34%, rgba(49, 95, 104, 0.14) 68%, rgba(29, 26, 22, 0.1) 100%),
    linear-gradient(180deg, rgba(127, 146, 114, 0.08), rgba(49, 95, 104, 0.2));
}

.about-copy {
  position: relative;
  z-index: 1;
  width: min(560px, 100%);
  padding: clamp(28px, 6vw, 72px);
}

.about-copy p {
  color: rgba(29, 26, 22, 0.66);
}

.about-copy p:last-child {
  margin-bottom: 0;
}

.membership-section {
  width: 100%;
  max-width: none;
  padding: 72px max(24px, calc((100vw - 1180px) / 2));
  background:
    linear-gradient(135deg, rgba(231, 238, 227, 0.86), rgba(199, 214, 220, 0.24)),
    var(--sand);
}

.membership-card {
  padding: 26px;
  background: rgba(250, 246, 239, 0.88);
}

.membership-card span {
  color: var(--earth);
}

.membership-card strong {
  display: block;
  margin: 10px 0 22px;
  font-family: Marcellus, Georgia, serif;
  font-size: 1.34rem;
  font-weight: 400;
  line-height: 1.1;
}

.membership-card ul {
  display: grid;
  gap: 10px;
  margin: 0 0 28px;
  padding: 0;
  color: rgba(27, 27, 27, 0.7);
  list-style: none;
}

.membership-card li::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 10px;
  border-radius: 50%;
  background: var(--deep-blue);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 26px;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 44px 0 54px;
  border-top: 1px solid var(--line);
}

.site-footer span {
  font-family: Marcellus, Georgia, serif;
  font-size: 1.12rem;
}

.site-footer nav {
  flex-wrap: wrap;
  justify-content: flex-end;
  color: rgba(27, 27, 27, 0.62);
  font-size: 0.92rem;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 900ms ease, transform 900ms ease;
}

[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

@media (max-width: 880px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav-links {
    display: none;
  }

  .hero {
    min-height: 390px;
    padding-top: 94px;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(27, 27, 27, 0.64), rgba(47, 79, 99, 0.34) 44%, rgba(244, 241, 236, 0.9)),
      linear-gradient(90deg, rgba(27, 27, 27, 0.34), transparent);
  }

  .hero-player {
    grid-template-columns: auto auto 1fr;
  }

  .sound-wave {
    grid-column: 1 / -1;
  }

  .intro-grid,
  .emotional-section,
  .testimonial-section,
  .about-section,
  .membership-section {
    grid-template-columns: 1fr;
  }

  .category-grid,
  .shop-grid,
  .meditation-grid {
    grid-template-columns: 1fr;
  }

  .large-card {
    grid-column: auto;
  }

  .section,
  .emotional-section,
  .membership-section {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .site-footer {
    flex-direction: column;
  }

  .site-footer nav {
    justify-content: flex-start;
  }
}

@media (max-width: 520px) {
  .site-header {
    top: 10px;
    width: calc(100% - 20px);
  }

  .brand span:last-child {
    max-width: 140px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
  }

  .header-action {
    padding: 8px 11px;
  }

  h1 {
    font-size: 2rem;
  }

  .primary-button,
  .secondary-button {
    width: 100%;
  }

  .emotion-chip {
    flex: 1 1 auto;
  }
}
