:root {
  --bg: #fff8ef;
  --surface: rgba(255, 255, 255, 0.78);
  --surface-strong: #ffffff;
  --text: #50392f;
  --muted: #7d665d;
  --line: rgba(123, 87, 62, 0.14);
  --yellow: #f4c84f;
  --yellow-soft: #fff3bf;
  --coral: #ef7a5b;
  --coral-soft: #ffe0d6;
  --peach: #f3b284;
  --peach-soft: #ffe9d8;
  --sage: #a6c2a1;
  --sage-soft: #e7f0e1;
  --brown: #62483d;
  --shadow: 0 24px 80px rgba(125, 72, 42, 0.14);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: "DM Sans", sans-serif;
  color: var(--text);
  overflow-x: hidden;
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 234, 164, 0.45), transparent 25%),
    radial-gradient(circle at 90% 8%, rgba(241, 154, 123, 0.28), transparent 22%),
    linear-gradient(180deg, #fffaf2 0%, #fff4e6 52%, #fff9f4 100%);
}

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

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

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
  border: 0;
}

textarea,
input {
  width: 100%;
  border: 1px solid rgba(123, 87, 62, 0.16);
  background: rgba(255, 255, 255, 0.9);
  color: var(--text);
  border-radius: 18px;
  padding: 0.95rem 1rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

textarea:focus,
input:focus {
  outline: none;
  border-color: rgba(239, 122, 91, 0.8);
  box-shadow: 0 0 0 4px rgba(239, 122, 91, 0.12);
}

.site-shell {
  position: relative;
  overflow: hidden;
}

.background-orb {
  position: fixed;
  z-index: 0;
  border-radius: 999px;
  filter: blur(70px);
  opacity: 0.55;
  pointer-events: none;
}

.orb-1 {
  top: 10rem;
  left: -4rem;
  width: 14rem;
  height: 14rem;
  background: rgba(244, 200, 79, 0.55);
}

.orb-2 {
  top: 28rem;
  right: -3rem;
  width: 16rem;
  height: 16rem;
  background: rgba(239, 122, 91, 0.28);
}

.orb-3 {
  bottom: 4rem;
  left: 18%;
  width: 12rem;
  height: 12rem;
  background: rgba(166, 194, 161, 0.32);
}

.container {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
}

.narrow {
  max-width: 860px;
}

.section {
  padding: 5rem 0;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(255, 250, 242, 0.82);
  border-bottom: 1px solid rgba(123, 87, 62, 0.08);
}

.topbar-inner,
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 5.25rem;
  padding: 0.75rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--yellow), var(--coral));
  color: #fff;
  box-shadow: 0 10px 24px rgba(239, 122, 91, 0.26);
}

.brand-text {
  font-family: "Pacifico", cursive;
  font-size: 1.35rem;
  color: var(--coral);
}

.main-nav {
  display: flex;
  gap: 1.4rem;
  color: var(--muted);
  font-size: 0.96rem;
}

.menu-toggle {
  display: none;
  min-height: 2.8rem;
  padding: 0 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid var(--line);
  color: var(--text);
  font-weight: 700;
}

.main-nav a:hover,
.footer a:hover {
  color: var(--coral);
}

.joy-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  background: rgba(244, 200, 79, 0.18);
  color: #876042;
  font-weight: 700;
}

.hero {
  padding-top: 4.5rem;
}

.hero-grid,
.meditation-grid {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 3rem;
  align-items: center;
}

.hero-media,
.meditation-media {
  position: relative;
}

.hero-glow {
  position: absolute;
  inset: 1rem;
  border-radius: 38% 62% 58% 42% / 42% 41% 59% 58%;
  background: radial-gradient(circle, rgba(244, 200, 79, 0.5), transparent 70%);
  transform: scale(1.08);
}

.hero-glow.soft {
  background: radial-gradient(circle, rgba(243, 178, 132, 0.45), transparent 70%);
}

.hero-media img,
.meditation-media img {
  position: relative;
  z-index: 1;
  width: 100%;
  box-shadow: var(--shadow);
}

.hero-media img {
  border-radius: 34% 66% 62% 38% / 37% 36% 64% 63%;
}

.meditation-media img {
  max-width: 30rem;
  margin: 0 auto;
  border-radius: var(--radius-xl);
}

.eyebrow {
  margin: 0 0 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--coral);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Playfair Display", serif;
  line-height: 1;
}

h1 {
  font-size: clamp(3.6rem, 9vw, 6.9rem);
  letter-spacing: -0.05em;
}

h1 span {
  display: block;
  font-style: italic;
  color: var(--coral);
}

h2 {
  font-size: clamp(2.2rem, 5vw, 4rem);
  letter-spacing: -0.04em;
}

h3 {
  font-size: 1.5rem;
  line-height: 1.15;
}

.lead,
.section-heading p:last-child,
.booking-card p,
.testimonial-card p,
.meditation-copy > p,
.final-content p,
.footer,
.energy-message {
  color: var(--muted);
  line-height: 1.75;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  min-width: 0;
}

.hero-actions,
.form-actions,
.modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.3rem;
  padding: 0 1.35rem;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  text-align: center;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary,
.booking-button {
  color: #fff;
  background: linear-gradient(135deg, var(--yellow), var(--coral));
  box-shadow: 0 14px 34px rgba(239, 122, 91, 0.24);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--line);
  color: var(--text);
}

.button-outline {
  border: 1px solid rgba(239, 122, 91, 0.3);
  background: rgba(255, 255, 255, 0.68);
  color: var(--coral);
}

.button-light,
.cta-white {
  background: #fff;
  color: var(--coral);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.card-soft,
.breathing-card,
.journal-card,
.booking-card,
.testimonial-card,
.booking-note,
.ritual-card {
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.joy-meter {
  padding: 1.4rem;
  border-radius: var(--radius-lg);
  background: var(--surface);
}

.joy-meter-head {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
}

.joy-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--coral);
}

.progress-track {
  overflow: hidden;
  height: 0.8rem;
  border-radius: 999px;
  background: rgba(98, 72, 61, 0.08);
}

.progress-fill {
  height: 100%;
  width: 0;
  border-radius: inherit;
  background: linear-gradient(90deg, #e48e47, #ef7a5b, #a6c2a1);
  transition: width 0.35s ease;
}

.cta-card {
  padding: 2rem;
  border-radius: var(--radius-xl);
  text-align: center;
  background: linear-gradient(135deg, #f5cf59, #ef7a5b);
  color: #fff;
  box-shadow: 0 26px 68px rgba(239, 122, 91, 0.28);
}

.cta-card p {
  margin: 0 0 1.2rem;
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.92);
}

.cta-icon {
  font-size: 1.3rem;
}

.section-heading {
  margin-bottom: 2rem;
  text-align: center;
}

.section-heading p:last-child {
  max-width: 46rem;
  margin: 1rem auto 0;
}

.affirmation-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  min-height: 28rem;
  background:
    url("https://d2xsxph8kpxj0f.cloudfront.net/310519663511982701/BwTZyWgMVQPjngZzxGxhDw/armelle-affirmation-bg-DHEr9thRfeop4zqi3oyeMx.webp")
      center/cover;
  box-shadow: 0 26px 70px rgba(95, 48, 30, 0.2);
}

.affirmation-overlay,
.final-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(70, 50, 42, 0.52);
}

.affirmation-content,
.final-content {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  min-height: inherit;
  padding: 3rem;
  text-align: center;
  color: #fff;
}

.sparkle {
  font-size: 2rem;
  color: var(--yellow);
}

.affirmation-content blockquote {
  margin: 0;
  max-width: 18ch;
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1.35;
  font-style: italic;
}

.quote-author {
  margin: 0.6rem 0 0;
  color: rgba(255, 248, 230, 0.84);
}

.quote-tag {
  display: inline-flex;
  margin: 1rem 0 1.4rem;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  background: rgba(244, 200, 79, 0.24);
  color: #fff7d4;
  text-transform: uppercase;
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  font-weight: 700;
}

.ritual-grid,
.booking-grid,
.testimonial-grid,
.stats {
  display: grid;
  gap: 1.2rem;
}

.ritual-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.ritual-card {
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  min-width: 0;
}

.ritual-icon,
.booking-icon {
  display: grid;
  place-items: center;
  width: 3.4rem;
  height: 3.4rem;
  border-radius: 1.2rem;
  margin-bottom: 1rem;
  font-size: 1.4rem;
}

.ritual-card span,
.booking-note p,
.save-message,
.breathing-phase-note {
  font-size: 0.95rem;
  color: var(--muted);
}

.ritual-card span {
  display: inline-flex;
  margin-top: 1rem;
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  font-weight: 700;
}

.ritual-sun {
  background: rgba(255, 243, 191, 0.72);
}

.ritual-sun .ritual-icon,
.ritual-sun span {
  background: rgba(244, 200, 79, 0.18);
  color: #b07b00;
}

.ritual-heart {
  background: rgba(255, 224, 214, 0.72);
}

.ritual-heart .ritual-icon,
.ritual-heart span {
  background: rgba(239, 122, 91, 0.16);
  color: var(--coral);
}

.ritual-leaf {
  background: rgba(231, 240, 225, 0.9);
}

.ritual-leaf .ritual-icon,
.ritual-leaf span {
  background: rgba(166, 194, 161, 0.22);
  color: #64805f;
}

.ritual-star {
  background: rgba(255, 233, 216, 0.82);
}

.ritual-star .ritual-icon,
.ritual-star span {
  background: rgba(243, 178, 132, 0.2);
  color: #bf7443;
}

.meditation-copy {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.breathing-card,
.journal-card,
.booking-card,
.testimonial-card,
.booking-note {
  background: var(--surface);
  border-radius: var(--radius-xl);
}

.breathing-card {
  padding: 1.75rem;
}

.breathing-circle {
  display: grid;
  place-items: center;
  width: 11rem;
  height: 11rem;
  margin: 0 auto 1.25rem;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, var(--yellow), var(--coral));
  box-shadow: 0 0 0 14px rgba(239, 122, 91, 0.08);
  transition: transform 0.8s ease, background 0.4s ease;
}

.breathing-circle.is-active {
  animation: breathe 4s ease-in-out infinite;
}

.breathing-circle span {
  font-family: "Playfair Display", serif;
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1;
}

.breathing-circle small {
  margin-top: 0.3rem;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.list-form {
  display: grid;
  gap: 1rem;
}

.list-form label {
  display: grid;
  grid-template-columns: 2.25rem minmax(0, 1fr);
  gap: 0.9rem;
  align-items: start;
}

.list-form label span {
  display: inline-flex;
  justify-content: center;
  padding-top: 0.55rem;
  font-size: 1.45rem;
}

.booking-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}

.booking-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.6rem;
  min-width: 0;
}

.booking-price {
  margin-top: auto;
  font-family: "Playfair Display", serif;
  font-size: 3rem;
  line-height: 1;
}

.booking-yellow {
  background: rgba(255, 243, 191, 0.78);
}

.booking-yellow .booking-icon,
.booking-yellow .booking-price {
  color: #b07b00;
}

.booking-yellow .booking-icon {
  background: rgba(244, 200, 79, 0.18);
}

.booking-coral {
  background: rgba(255, 224, 214, 0.82);
}

.booking-coral .booking-icon,
.booking-coral .booking-price {
  color: var(--coral);
}

.booking-coral .booking-icon {
  background: rgba(239, 122, 91, 0.16);
}

.booking-peach {
  background: rgba(255, 233, 216, 0.84);
}

.booking-peach .booking-icon,
.booking-peach .booking-price {
  color: #bf7443;
}

.booking-peach .booking-icon {
  background: rgba(243, 178, 132, 0.18);
}

.booking-note {
  margin-top: 1.4rem;
  padding: 1rem 1.2rem;
  text-align: center;
}

.booking-note p {
  margin: 0;
}

.testimonial-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.6rem;
  min-width: 0;
}

.testimonial-stars {
  color: var(--yellow);
  letter-spacing: 0.14em;
}

.stats {
  margin-top: 2rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  text-align: center;
}

.stats div {
  padding: 1.5rem 1rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.56);
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: var(--shadow);
}

.stats strong {
  display: block;
  font-family: "Playfair Display", serif;
  font-size: 3rem;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stats span {
  color: var(--muted);
}

.final-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background:
    url("https://d2xsxph8kpxj0f.cloudfront.net/310519663511982701/BwTZyWgMVQPjngZzxGxhDw/armelle-joy-card-AakHoYqW5fSbdjoEeiFyZQ.webp")
      center/cover;
  box-shadow: 0 28px 80px rgba(90, 42, 32, 0.22);
}

.final-content {
  min-height: 24rem;
}

.final-logo {
  display: inline-flex;
  padding: 0.8rem 1.3rem;
  border-radius: 999px;
  background: var(--yellow);
  color: var(--brown);
  font-family: "Pacifico", cursive;
  font-size: 1.6rem;
}

.final-content p {
  max-width: 38rem;
  color: rgba(255, 245, 237, 0.92);
}

.footer {
  padding: 0 0 2rem;
}

.footer-inner {
  min-height: auto;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(123, 87, 62, 0.12);
  color: var(--muted);
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: none;
}

.modal.is-open {
  display: block;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(40, 24, 17, 0.45);
}

.modal-dialog {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 2rem), 760px);
  margin: 4rem auto;
  max-height: calc(100vh - 2rem);
  overflow: auto;
  padding: 2rem;
  border-radius: var(--radius-xl);
  background: #fffaf5;
  box-shadow: 0 30px 90px rgba(57, 29, 21, 0.24);
}

.modal-dialog h2 {
  margin-bottom: 0.8rem;
}

.modal-dialog > p {
  margin-top: 0;
  color: var(--muted);
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  background: rgba(98, 72, 61, 0.08);
  color: var(--text);
  font-size: 1.4rem;
}

.premium-form {
  display: grid;
  gap: 1rem;
}

.premium-form label {
  display: grid;
  gap: 0.45rem;
}

.premium-form span {
  font-weight: 700;
  color: var(--muted);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

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

@keyframes breathe {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.18);
  }
}

@media (max-width: 1080px) {
  .ritual-grid,
  .booking-grid,
  .testimonial-grid,
  .stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-grid,
  .meditation-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero-copy,
  .meditation-copy {
    max-width: 46rem;
    margin: 0 auto;
    text-align: center;
  }

  .hero-actions,
  .meditation-copy .button {
    justify-content: center;
  }

  .hero-media {
    max-width: 38rem;
    margin: 0 auto;
  }
}

@media (max-width: 760px) {
  .hero-grid,
  .meditation-grid,
  .ritual-grid,
  .booking-grid,
  .testimonial-grid,
  .stats,
  .list-form label {
    grid-template-columns: 1fr;
  }

  .topbar-inner,
  .footer-inner {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .topbar-inner {
    position: relative;
    min-height: auto;
    padding: 0.9rem 0;
  }

  .menu-toggle {
    display: inline-flex;
    align-self: stretch;
  }

  .main-nav {
    display: none;
    width: 100%;
    padding: 0.4rem;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.74);
    border: 1px solid rgba(123, 87, 62, 0.1);
    box-shadow: 0 16px 40px rgba(94, 55, 35, 0.08);
  }

  .main-nav.is-open {
    display: grid;
    gap: 0.35rem;
  }

  .main-nav a {
    display: block;
    width: 100%;
    padding: 0.9rem 1rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.72);
  }

  .hero {
    padding-top: 3rem;
  }

  .hero-media {
    order: -1;
  }

  .section {
    padding: 3.6rem 0;
  }

  .joy-meter-head,
  .form-actions,
  .modal-actions {
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }

  .list-form label {
    display: grid;
    gap: 0.5rem;
  }

  .list-form label span {
    justify-content: flex-start;
    padding-top: 0;
  }

  .brand {
    width: 100%;
    justify-content: space-between;
  }

  .brand-text {
    font-size: 1.1rem;
  }

  .joy-badge {
    width: 100%;
    justify-content: center;
  }

  h1 {
    font-size: clamp(2.8rem, 14vw, 4.2rem);
  }

  h2 {
    font-size: clamp(2rem, 10vw, 2.8rem);
  }

  .hero-actions,
  .hero-actions .button,
  .form-actions .button,
  .modal-actions .button,
  .cta-white,
  .booking-button,
  .button-outline,
  .button-primary,
  .button-secondary,
  .button-light {
    width: 100%;
  }

  .affirmation-card,
  .final-content {
    min-height: 22rem;
  }

  .affirmation-content,
  .final-content {
    padding: 2rem 1.35rem;
  }

  .affirmation-content blockquote {
    max-width: 100%;
    font-size: 1.7rem;
  }

  .breathing-circle {
    width: 9.5rem;
    height: 9.5rem;
  }

  .breathing-circle span {
    font-size: 2.7rem;
  }

  .modal-dialog {
    margin: 1rem auto;
    padding: 1.4rem;
  }
}

@media (max-width: 480px) {
  .container {
    width: min(calc(100% - 1.25rem), var(--container));
  }

  .section {
    padding: 3rem 0;
  }

  .joy-meter,
  .breathing-card,
  .journal-card,
  .booking-card,
  .testimonial-card,
  .cta-card {
    padding: 1.2rem;
  }

  .ritual-card {
    padding: 1.2rem;
  }

  .stats strong {
    font-size: 2.5rem;
  }

  .final-logo {
    font-size: 1.25rem;
    padding: 0.75rem 1rem;
  }
}
