:root {
  --ivory: #fff8ef;
  --paper: #fbefe8;
  --lavender: #d9c2dc;
  --mauve: #a77b9e;
  --plum: #43243f;
  --deep: #261723;
  --gold: #c79855;
  --rose: #f4ded7;
  --ink: #2f2430;
  --muted: #725f70;
  --line: rgba(67, 36, 63, 0.16);
  --shadow: 0 24px 70px rgba(67, 36, 63, 0.16);
  --display: "Cormorant Garamond", Georgia, serif;
  --body: "Inter", Arial, sans-serif;
  --signature: "Parisienne", cursive;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 8% 12%, rgba(217, 194, 220, 0.45), transparent 26rem),
    linear-gradient(180deg, var(--ivory) 0%, #fffaf3 38%, var(--paper) 100%);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.7;
}

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

a {
  color: inherit;
}

.site-header {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 20;
  width: min(1180px, calc(100% - 32px));
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.66);
  border-radius: 999px;
  background: rgba(255, 248, 239, 0.82);
  box-shadow: 0 16px 48px rgba(67, 36, 63, 0.12);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  font-family: var(--display);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 700;
  color: var(--plum);
}

.brand-logo,
.footer-logo {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  background: #fff;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-nav a {
  padding: 9px 14px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 160ms ease, color 160ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: rgba(217, 194, 220, 0.45);
  color: var(--plum);
}

.site-nav .nav-cta {
  background: var(--plum);
  color: #fffaf4;
}

.nav-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  padding: 96px min(7vw, 86px) 46px;
  overflow: hidden;
}

.hero-image {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(38, 23, 35, 0.08) 0%, rgba(255, 248, 239, 0.18) 44%, rgba(255, 248, 239, 0.86) 74%, rgba(255, 248, 239, 0.94) 100%),
    url("assets/hero.jpg") center / cover no-repeat;
}

.hero-image::after {
  content: "";
  position: absolute;
  right: max(4vw, 28px);
  top: 20%;
  width: min(42vw, 520px);
  aspect-ratio: 1;
  border: 1px solid rgba(199, 152, 85, 0.25);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(199, 152, 85, 0.18), transparent 62%),
    repeating-conic-gradient(from 20deg, rgba(199, 152, 85, 0.18) 0 8deg, transparent 8deg 18deg);
  opacity: 0.32;
  mask-image: radial-gradient(circle, #000 0 54%, transparent 72%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(590px, 100%);
  margin-left: auto;
  padding: clamp(24px, 4vw, 46px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 28px;
  background: rgba(255, 248, 239, 0.76);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--plum);
  font-family: var(--display);
  line-height: 1.02;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(3rem, 6.25vw, 5.8rem);
}

h2 {
  font-size: clamp(2.2rem, 4.4vw, 4.35rem);
}

h3 {
  font-size: clamp(1.42rem, 2.2vw, 1.9rem);
}

p {
  margin: 0;
}

.hero-copy {
  margin-top: 18px;
  color: var(--muted);
  font-size: clamp(1rem, 1.4vw, 1.15rem);
}

.hero-actions {
  display: grid;
  grid-template-columns: 1.4fr 0.9fr 1fr;
  gap: 12px;
  margin-top: 24px;
}

.hero-actions .button {
  min-width: 0;
  padding-inline: 12px;
  font-size: 0.92rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 21px;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

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

.button.primary {
  background: var(--plum);
  color: #fffaf4;
  box-shadow: 0 14px 34px rgba(67, 36, 63, 0.25);
}

.button.whatsapp {
  background: #0b6b5d;
  color: #fff;
  box-shadow: 0 14px 34px rgba(11, 107, 93, 0.24);
}

.button.whatsapp:hover,
.button.whatsapp:focus-visible {
  background: #07564b;
}

.button.secondary {
  border: 1px solid rgba(67, 36, 63, 0.18);
  background: rgba(255, 255, 255, 0.58);
  color: var(--plum);
}

.quote-band {
  padding: 60px min(7vw, 86px);
  background: var(--plum);
  color: #fff8ef;
  text-align: center;
}

.quote-band blockquote {
  max-width: 980px;
  margin: 0 auto;
  font-family: var(--display);
  font-size: clamp(1.55rem, 2.75vw, 2.8rem);
  line-height: 1.18;
}

.quote-mark {
  color: rgba(255, 248, 239, 0.62);
}

.quote-band cite {
  display: block;
  margin-top: 24px;
  color: rgba(255, 248, 239, 0.82);
  font-family: var(--signature);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-style: normal;
}

.section-grid,
.sessions,
.community-voices,
.process,
.courses,
.faq,
.contact {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1.55fr);
  align-items: center;
  gap: clamp(32px, 6vw, 82px);
  padding: clamp(68px, 8vw, 104px) 0;
}

.intro {
  padding-bottom: clamp(38px, 4vw, 58px);
}

.section-kicker {
  margin: 0 0 14px;
  align-self: start;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.intro-aside {
  display: grid;
  gap: 16px;
}

.intro-aside img {
  width: 100%;
  aspect-ratio: 4 / 4.8;
  border-radius: 28px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.youtube-card {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4px 14px;
  padding: 22px;
  border: 1px solid rgba(67, 36, 63, 0.13);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.66);
  box-shadow: 0 18px 44px rgba(67, 36, 63, 0.09);
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.youtube-card:hover,
.youtube-card:focus-visible {
  transform: translateY(-5px);
  border-color: rgba(199, 152, 85, 0.42);
  box-shadow: 0 24px 62px rgba(67, 36, 63, 0.15);
  outline: none;
}

.youtube-icon {
  grid-row: span 4;
  display: inline-grid;
  width: 52px;
  height: 38px;
  place-items: center;
  border-radius: 12px;
  background: #d92727;
  box-shadow: 0 12px 28px rgba(217, 39, 39, 0.22);
}

.youtube-icon span {
  width: 0;
  height: 0;
  margin-left: 3px;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 13px solid #fff;
}

.youtube-label {
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.youtube-card strong {
  color: var(--plum);
  font-family: var(--display);
  font-size: 1.55rem;
  line-height: 1;
}

.youtube-card span:last-of-type {
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.45;
}

.youtube-card em {
  color: var(--plum);
  font-size: 0.92rem;
  font-style: normal;
  font-weight: 800;
}

.section-copy p,
.section-heading p,
.process-copy p,
.courses p,
.contact p,
.contact-note p {
  color: var(--muted);
}

.section-copy p {
  max-width: 780px;
  margin-top: 22px;
  font-size: 1.08rem;
}

.first-visit-note {
  max-width: 720px;
  margin-top: 30px;
  padding: 4px 0 4px 22px;
  border-left: 3px solid var(--gold);
}

.first-visit-note strong {
  color: var(--plum);
  font-family: var(--display);
  font-size: 1.55rem;
}

.first-visit-note p {
  margin-top: 8px;
  font-size: 1rem;
}

.first-visit-note a {
  display: inline-flex;
  margin-top: 12px;
  color: var(--plum);
  font-weight: 800;
  text-underline-offset: 5px;
}

.sessions {
  padding: clamp(38px, 4vw, 58px) 0 clamp(48px, 5vw, 72px);
}

.section-heading {
  max-width: 800px;
  margin-bottom: 42px;
}

.section-heading p:last-child {
  margin-top: 18px;
  font-size: 1.08rem;
}

.section-heading.compact {
  max-width: 680px;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.service-card {
  position: relative;
  overflow: hidden;
  min-height: 255px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.48);
  box-shadow: 0 18px 50px rgba(67, 36, 63, 0.08);
  text-decoration: none;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 12%, rgba(199, 152, 85, 0.16), transparent 16rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(217, 194, 220, 0.14));
  opacity: 0;
  transition: opacity 180ms ease;
}

.service-card > * {
  position: relative;
  z-index: 1;
}

.service-card:hover,
.service-card:focus-visible {
  transform: translateY(-8px);
  border-color: rgba(199, 152, 85, 0.42);
  background: rgba(255, 255, 255, 0.66);
  box-shadow: 0 24px 68px rgba(67, 36, 63, 0.16);
  outline: none;
}

.service-card:hover::before,
.service-card:focus-visible::before {
  opacity: 1;
}

.service-card span {
  display: inline-flex;
  margin-bottom: 34px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.service-card p {
  margin-top: 16px;
  color: var(--muted);
}

.featured-card {
  cursor: pointer;
  background:
    linear-gradient(135deg, rgba(67, 36, 63, 0.94), rgba(114, 70, 107, 0.9)),
    url("assets/soft_mandala.jpg") center / cover;
}

.featured-card:hover,
.featured-card:focus-visible {
  background:
    linear-gradient(135deg, rgba(67, 36, 63, 0.9), rgba(138, 82, 130, 0.86)),
    url("assets/soft_mandala.jpg") center / cover;
}

.featured-card h3,
.featured-card span,
.featured-card p {
  color: #fff8ef;
}

.community-voices {
  padding: clamp(38px, 4vw, 58px) 0 clamp(28px, 3vw, 42px);
}

.voices-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.voice-card {
  display: grid;
  align-content: space-between;
  min-height: 220px;
  margin: 0;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.48);
  box-shadow: 0 18px 50px rgba(67, 36, 63, 0.08);
}

.voice-card p {
  color: var(--plum);
  font-family: var(--display);
  font-size: clamp(1.45rem, 2.2vw, 1.9rem);
  line-height: 1.18;
}

.voice-card footer {
  margin-top: 28px;
}

.voice-card a {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
  overflow-wrap: anywhere;
  text-underline-offset: 5px;
}

.process {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(28px, 5vw, 74px);
  padding: clamp(28px, 3vw, 42px) 0 clamp(62px, 7vw, 96px);
}

.process-media {
  overflow: hidden;
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.carousel {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3.15;
  background: var(--lavender);
}

.carousel-viewport {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  width: 100%;
  height: 100%;
  transform: translateX(0);
  transition: transform 360ms ease;
}

.carousel-slide {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  margin: 0;
}

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

.carousel-button {
  position: absolute;
  top: 50%;
  z-index: 3;
  display: inline-grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(255, 248, 239, 0.56);
  border-radius: 50%;
  background: rgba(67, 36, 63, 0.62);
  color: #fff8ef;
  cursor: pointer;
  font-size: 2rem;
  line-height: 1;
  transform: translateY(-50%);
  transition: background 160ms ease, transform 160ms ease;
}

.carousel-button:hover,
.carousel-button:focus-visible {
  background: rgba(67, 36, 63, 0.86);
  outline: none;
  transform: translateY(-50%) scale(1.05);
}

.carousel-button-prev {
  left: 16px;
}

.carousel-button-next {
  right: 16px;
}

.carousel-dots {
  position: absolute;
  left: 50%;
  bottom: 14px;
  z-index: 3;
  display: flex;
  gap: 8px;
  transform: translateX(-50%);
}

.carousel-dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 248, 239, 0.56);
  cursor: pointer;
}

.carousel-dot.is-active {
  width: 24px;
  border-radius: 999px;
  background: #fff8ef;
}

.process-copy {
  padding: clamp(12px, 3vw, 32px) 0;
}

.process-copy > p:last-child {
  margin-top: 24px;
}

.process-copy .price-note {
  margin-top: 12px;
  color: var(--plum);
  font-weight: 700;
}

.steps {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.steps div {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 16px;
  align-items: start;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.5);
}

.steps strong {
  display: inline-grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 50%;
  background: var(--lavender);
  color: var(--plum);
}

.steps p {
  padding-top: 3px;
}

.courses {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.75fr);
  align-items: center;
  gap: clamp(32px, 7vw, 92px);
  padding: clamp(70px, 9vw, 112px) clamp(20px, 5vw, 64px);
  border-radius: 34px;
  background: linear-gradient(135deg, rgba(67, 36, 63, 0.94), rgba(95, 55, 91, 0.9));
  color: #fff8ef;
}

.courses h2,
.courses .eyebrow {
  color: #fff8ef;
}

.courses p {
  margin-top: 20px;
  color: rgba(255, 248, 239, 0.78);
}

.courses img {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 24px;
  object-fit: cover;
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.2);
}

.text-link {
  display: inline-flex;
  margin-top: 26px;
  color: #fff8ef;
  font-weight: 800;
  text-decoration-color: rgba(255, 248, 239, 0.45);
  text-underline-offset: 7px;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.faq {
  padding: clamp(76px, 9vw, 120px) 0;
}

.faq-list {
  display: grid;
  gap: 12px;
}

details {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.48);
}

summary {
  cursor: pointer;
  padding: 20px 24px;
  color: var(--plum);
  font-weight: 800;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  float: right;
  color: var(--gold);
  font-size: 1.25rem;
}

details[open] summary::after {
  content: "×";
}

details p {
  padding: 0 24px 22px;
  color: var(--muted);
}

.contact {
  display: grid;
  grid-template-columns: 1.45fr 0.8fr;
  gap: 18px;
  padding-bottom: clamp(70px, 9vw, 112px);
}

.contact-panel,
.contact-note {
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.54);
  box-shadow: 0 18px 50px rgba(67, 36, 63, 0.08);
}

.contact-panel {
  padding: clamp(30px, 5vw, 58px);
}

.contact-panel p {
  max-width: 640px;
  margin: 18px 0 28px;
}

.contact-note {
  align-self: stretch;
  padding: 34px;
  border: 1px solid var(--line);
}

.contact-note h3 {
  margin-bottom: 16px;
}

.site-footer {
  display: grid;
  justify-items: center;
  gap: 8px;
  padding: 44px 20px 52px;
  background: var(--deep);
  color: rgba(255, 248, 239, 0.72);
  text-align: center;
}

.site-footer p:first-of-type {
  color: #fff8ef;
  font-family: var(--display);
  font-size: 1.55rem;
  font-weight: 700;
}

@media (max-width: 920px) {
  .nav-toggle {
    display: inline-grid;
    gap: 5px;
    width: 42px;
    height: 42px;
    place-items: center;
    border: 0;
    border-radius: 50%;
    background: var(--plum);
  }

  .nav-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    background: #fff8ef;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    display: none;
    width: min(320px, calc(100vw - 32px));
    padding: 12px;
    border-radius: 22px;
    background: rgba(255, 248, 239, 0.96);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: grid;
  }

  .site-nav a {
    padding: 12px 14px;
  }

  .hero {
    min-height: auto;
    padding-top: 100px;
  }

  .hero-content {
    margin: 30svh 0 0;
  }

  .section-grid,
  .process,
  .courses,
  .contact {
    grid-template-columns: 1fr;
  }

  .intro-aside {
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr);
    align-items: stretch;
  }

  .intro-aside img {
    aspect-ratio: 1;
  }

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

  .voices-grid {
    grid-template-columns: 1fr;
  }

  .courses img {
    max-height: 420px;
  }
}

@media (max-width: 640px) {
  body {
    font-size: 15px;
  }

  .site-header {
    top: 10px;
    width: calc(100% - 18px);
    padding: 10px 12px;
  }

  .brand span {
    max-width: 170px;
    line-height: 1;
  }

  .hero {
    padding: 84px 16px 34px;
  }

  .hero-image {
    background:
      linear-gradient(180deg, rgba(38, 23, 35, 0.02) 0%, rgba(255, 248, 239, 0.15) 28%, rgba(255, 248, 239, 0.92) 62%, rgba(255, 248, 239, 0.98) 100%),
      url("assets/hero.jpg") 34% top / auto 58% no-repeat;
  }

  .hero-content {
    margin-top: 27svh;
    padding: 20px;
    border-radius: 22px;
  }

  h1 {
    font-size: clamp(2.35rem, 12.5vw, 3.4rem);
  }

  .hero-copy {
    margin-top: 14px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 18px;
  }

  .hero-actions .whatsapp {
    grid-column: 1 / -1;
  }

  .hero-actions .button:not(.whatsapp) {
    min-width: 0;
    padding-inline: 10px;
    font-size: 0.9rem;
  }

  .button {
    width: 100%;
  }

  .quote-band {
    padding: 42px 20px;
  }

  .card-grid {
    grid-template-columns: 1fr;
  }

  .section-grid,
  .sessions,
  .community-voices,
  .process,
  .courses,
  .faq,
  .contact {
    width: calc(100% - 28px);
  }

  .intro-aside {
    grid-template-columns: 1fr;
  }

  .intro-aside img {
    max-height: 360px;
  }

  .service-card {
    min-height: auto;
  }

  .contact-actions {
    display: grid;
  }

  .courses {
    padding: 38px 22px;
    border-radius: 24px;
  }

  .contact-panel,
  .contact-note {
    border-radius: 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
