:root {
  --bg: #f5efe4;
  --surface: rgba(255, 250, 243, 0.82);
  --surface-strong: rgba(255, 251, 246, 0.92);
  --text: #31453c;
  --muted: #617268;
  --sage: #a4b8a5;
  --sage-deep: #5d7462;
  --forest: #43594b;
  --gold: #ba9a5b;
  --gold-soft: rgba(186, 154, 91, 0.18);
  --line: rgba(90, 111, 94, 0.14);
  --shadow: 0 28px 70px rgba(79, 88, 78, 0.13);
  --shadow-soft: 0 18px 44px rgba(79, 88, 78, 0.08);
  --radius: 34px;
  --radius-small: 22px;
  --container: min(1180px, calc(100vw - 2rem));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Instrument Sans", sans-serif;
  background:
    radial-gradient(circle at 12% 10%, rgba(164, 184, 165, 0.24), transparent 24%),
    radial-gradient(circle at 85% 15%, rgba(186, 154, 91, 0.12), transparent 20%),
    linear-gradient(180deg, #f7f2e8 0%, #f2eadc 100%);
  color: var(--text);
  line-height: 1.82;
  overflow-x: hidden;
}

body::before,
body::after {
  content: "";
  position: fixed;
  z-index: -1;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  filter: blur(24px);
  pointer-events: none;
}

body::before {
  top: -10%;
  right: -120px;
  background: rgba(164, 184, 165, 0.16);
}

body::after {
  bottom: -10%;
  left: -120px;
  background: rgba(186, 154, 91, 0.1);
}

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

img {
  max-width: 100%;
}

.page-shell {
  width: var(--container);
  margin: 0 auto;
  padding-bottom: 4rem;
  position: relative;
}

main {
  display: grid;
  gap: 1.35rem;
}

.site-header {
  position: sticky;
  top: 1rem;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin: 1rem auto 0;
  padding: 1rem 1.25rem;
  background: rgba(251, 246, 238, 0.76);
  backdrop-filter: blur(22px);
  border: 1px solid rgba(255, 255, 255, 0.64);
  border-radius: 999px;
  box-shadow: var(--shadow-soft);
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 28px;
  flex: 1 1 auto;
  min-width: 0;
}

.brand-logo {
  display: inline-flex;
  align-items: center;
  margin-left: 6px;
}

.brand-logo img {
  display: block;
  height: 42px;
  width: auto;
}

.site-nav {
  display: flex;
  gap: 32px;
  color: var(--muted);
  font-size: 0.98rem;
  min-width: 0;
}

.site-nav a:hover {
  color: var(--sage-deep);
}

.section {
  padding: 6rem 0;
}

.section-soft {
  padding: clamp(3.4rem, 60px, 4.9rem) clamp(1.4rem, 3.1vw, 2.5rem);
  border-radius: 40px;
  background:
    linear-gradient(180deg, rgba(255, 250, 243, 0.82), rgba(249, 242, 231, 0.58)),
    radial-gradient(circle at top right, rgba(186, 154, 91, 0.08), transparent 28%);
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(14px);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(400px, 0.94fr);
  gap: clamp(2rem, 3vw, 3.4rem);
  align-items: start;
  min-height: calc(100vh - 6.5rem);
  padding-top: 52px;
}

.hero-orbit {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(186, 154, 91, 0.14);
  pointer-events: none;
  animation: drift 12s ease-in-out infinite;
}

.hero-orbit-left {
  width: 18rem;
  height: 18rem;
  left: -5rem;
  top: 5rem;
}

.hero-orbit-right {
  width: 24rem;
  height: 24rem;
  right: 6%;
  bottom: -1rem;
  animation-delay: -4s;
}

.eyebrow {
  margin: 0 0 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  color: var(--sage-deep);
}

h1,
h2,
h3 {
  margin: 0 0 1.25rem;
  font-family: "Fraunces", serif;
  font-weight: 600;
  line-height: 1;
}

h1 {
  font-size: clamp(2.7rem, 4.25vw, 4.1rem);
  max-width: 13ch;
  line-height: 0.98;
}

h2 {
  font-size: clamp(2.2rem, 4.2vw, 3.5rem);
}

h3 {
  font-size: 1.8rem;
}

p,
li,
summary {
  font-size: 1.02rem;
}

.lead {
  max-width: 44ch;
  font-size: 1.125rem;
  color: var(--muted);
  margin-top: 0.9rem;
}

.hero-copy {
  max-width: 42rem;
  padding-top: 0.15rem;
}

.hero-copy,
.hero-visual,
.detail-copy,
.detail-panel,
.facilitator-card,
.faq-list details,
.final-cta,
.ritual-copy {
  animation: rise 700ms ease both;
}

.hero-visual {
  display: grid;
  gap: 0;
  align-content: start;
  justify-self: end;
  width: min(100%, 44rem);
  margin-right: 0;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.6rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0.98rem 1.6rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #5f7866 0%, #405649 100%);
  color: #fdfaf4;
  font-weight: 700;
  border: 1px solid transparent;
  box-shadow: 0 14px 30px rgba(74, 97, 81, 0.22);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 20px 36px rgba(74, 97, 81, 0.28);
}

.button-outline {
  background: rgba(255, 251, 245, 0.65);
  color: var(--forest);
  border-color: rgba(93, 116, 98, 0.2);
  box-shadow: none;
}

.button-small {
  min-height: 42px;
  padding: 0.65rem 1.1rem;
  font-size: 0.92rem;
}

.button-icon {
  display: none;
}

.button-icon svg {
  display: block;
  width: 1.1rem;
  height: 1.1rem;
}

.hero-highlights,
.check-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
}

.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.hero-highlights li {
  padding: 10px 16px;
  background: rgba(255, 250, 243, 0.5);
  border-radius: 999px;
  border: 1px solid rgba(93, 116, 98, 0.08);
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.25;
}

.check-list {
  display: grid;
  gap: 1.15rem;
}

.check-list li {
  position: relative;
  padding-left: 2rem;
  color: var(--muted);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72rem;
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 50%;
  background: radial-gradient(circle, var(--gold) 0 35%, rgba(186, 154, 91, 0.2) 36% 100%);
  box-shadow: 0 0 0 6px rgba(186, 154, 91, 0.08);
}

.detail-panel,
.facilitator-card,
.faq-list details,
.final-cta,
.ritual-copy {
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.62);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.hero-image-card,
.ritual-shot,
.facilitator-photo {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.62);
  box-shadow: var(--shadow);
}

.hero-image-card {
  aspect-ratio: 1 / 1.02;
}

.hero-image-card-wide {
  min-height: 540px;
}

.hero-image-card img,
.ritual-shot img,
.facilitator-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.section-heading {
  max-width: 64rem;
  margin-bottom: 2.2rem;
}

.section-heading.narrow {
  max-width: 50rem;
}

.two-column,
.detail-layout,
.facilitators-grid {
  display: grid;
  gap: 2rem;
}

.two-column,
.detail-layout {
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
}

.spacious-grid {
  gap: 2.2rem;
  align-items: start;
}

.text-block p + p {
  margin-top: 1.5rem;
}

.spacious-list {
  gap: 1rem;
}

.workshop-layout {
  gap: 2.4rem;
}

.detail-copy {
  padding-right: 0.25rem;
}

.detail-copy p + p {
  margin-top: 1.45rem;
}

.detail-panel {
  padding: 2rem 2rem 1.85rem;
  border-radius: var(--radius);
}

.panel-block + .panel-block {
  margin-top: 1.8rem;
}

.panel-note {
  padding: 1.35rem;
  border-radius: var(--radius-small);
  background: rgba(255, 248, 236, 0.9);
  border: 1px solid rgba(186, 154, 91, 0.18);
}

.facilitators-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.7rem;
}

.facilitator-card {
  border-radius: var(--radius);
  overflow: hidden;
}

.facilitator-photo {
  aspect-ratio: 4 / 4.8;
  border-radius: 0;
  box-shadow: none;
  border: none;
}

.facilitator-copy {
  padding: 1.9rem;
}

.facilitator-copy p {
  color: var(--muted);
}

.facilitator-handle {
  margin-top: 1rem;
  color: var(--sage-deep);
  font-weight: 700;
}

.faq-list {
  display: grid;
  gap: 1.15rem;
}

.faq-list details {
  border-radius: 26px;
  padding: 1.4rem 1.6rem;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 700;
  list-style: none;
  position: relative;
  padding-right: 2rem;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 0;
  color: var(--gold);
  font-size: 1.4rem;
  line-height: 1;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  margin: 1rem 0 0;
  color: var(--muted);
}

.final-cta {
  border-radius: var(--radius);
  padding: 3rem 2rem 2.6rem;
  text-align: center;
}

.cta-actions {
  justify-content: center;
}

.cta-note {
  margin-top: 1.2rem;
  color: var(--muted);
}

.pricing-section {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.pricing-card {
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  background: linear-gradient(180deg, rgba(255, 251, 246, 0.92), rgba(248, 241, 230, 0.78));
  border: 1px solid rgba(255, 255, 255, 0.62);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

.price-pill {
  padding: 1.3rem 1.2rem;
  border-radius: 24px;
  background: rgba(255, 250, 243, 0.88);
  border: 1px solid rgba(93, 116, 98, 0.12);
  text-align: center;
}

.price-pill span {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--sage-deep);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.75rem;
}

.price-pill strong {
  font-family: "Fraunces", serif;
  font-size: clamp(1.5rem, 2.2vw, 2rem);
  font-weight: 600;
  color: var(--forest);
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(26px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes drift {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  50% {
    transform: translate3d(0, -10px, 0) scale(1.03);
  }
}

@media (max-width: 980px) {
  .page-shell {
    width: min(100vw - 1.5rem, 100%);
  }

  .site-header {
    border-radius: 32px;
    padding: 1rem 1.1rem;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 0.85rem;
  }

  .header-actions {
    order: 3;
    width: 100%;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 0.85rem;
  }

  .site-nav {
    flex-wrap: wrap;
    justify-content: flex-start;
    width: auto;
    flex: 1 1 30rem;
    gap: 1rem 1.25rem;
    padding-top: 0;
    font-size: 0.94rem;
  }

  .button-small {
    min-height: 40px;
  }

  .hero,
  .two-column,
  .detail-layout,
  .facilitators-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    gap: 2rem;
    padding-top: 1.25rem;
  }

  .hero-copy {
    order: 2;
  }

  .hero-visual {
    order: 1;
    width: 100%;
    margin-right: 0;
    justify-self: stretch;
  }

  .hero-image-card-wide {
    min-height: 360px;
  }

  .hero-copy {
    max-width: 100%;
  }

  .hero-highlights {
    gap: 0.7rem;
  }

  .hero-highlights li {
    font-size: 0.95rem;
  }

  .section-heading,
  .section-heading.narrow {
    max-width: 100%;
  }

  .spacious-grid,
  .workshop-layout {
    gap: 1.75rem;
  }

  .section-soft {
    padding: 3rem 1.6rem;
    border-radius: 34px;
  }

  .detail-panel {
    max-width: 100%;
  }

  .facilitators-grid {
    gap: 1.35rem;
  }

  .pricing-grid {
    gap: 0.85rem;
  }

  .detail-copy {
    padding-right: 0;
  }
}

@media (max-width: 640px) {
  .page-shell {
    width: min(100vw - 1rem, 100%);
  }

  .site-header {
    position: static;
    padding: 0.95rem;
    border-radius: 28px;
    gap: 0.75rem;
    align-items: center;
  }

  .header-actions {
    display: contents;
  }

  .brand-logo img {
    height: 31px;
  }

  .site-nav {
    justify-content: flex-start;
    gap: 0.55rem;
    overflow-x: auto;
    flex-wrap: nowrap;
    white-space: nowrap;
    padding: 0.25rem 0 0.1rem;
    width: 100%;
    flex: 1 1 100%;
    order: 3;
    scrollbar-width: none;
  }

  .site-nav::-webkit-scrollbar {
    display: none;
  }

  .site-nav a {
    padding: 0.55rem 0.85rem;
    border-radius: 999px;
    background: rgba(255, 250, 243, 0.7);
    border: 1px solid rgba(93, 116, 98, 0.1);
    font-size: 0.9rem;
  }

  .button-small {
    flex: 1 1 100%;
  }

  .section {
    padding: 120px 0;
  }

  main {
    gap: 1rem;
  }

  h1 {
    font-size: clamp(2.35rem, 10vw, 3rem);
    max-width: 12ch;
    line-height: 0.98;
  }

  h2 {
    font-size: clamp(1.95rem, 8vw, 2.45rem);
    max-width: 14ch;
    line-height: 1.02;
  }

  h3 {
    font-size: 1.45rem;
  }

  .eyebrow {
    font-size: 0.72rem;
    letter-spacing: 0.16em;
    margin-bottom: 0.8rem;
  }

  p,
  li,
  summary {
    font-size: 0.98rem;
  }

  .lead {
    font-size: 1rem;
    margin-top: 0.8rem;
  }

  .hero {
    gap: 1.3rem;
    padding-top: 1rem;
  }

  .hero-copy,
  .hero-visual {
    gap: 0.9rem;
  }

  .hero-image-card-wide {
    min-height: 240px;
    aspect-ratio: 16 / 11;
  }

  .hero-highlights {
    flex-direction: column;
    gap: 0.55rem;
  }

  .hero-highlights li {
    width: 100%;
    text-align: left;
    padding: 0.7rem 0.85rem;
    font-size: 0.86rem;
  }

  .hero-actions,
  .cta-actions {
    flex-direction: column;
    gap: 0.75rem;
  }

  .button,
  .button-outline {
    width: 100%;
    min-height: 52px;
  }

  .header-whatsapp {
    order: 2;
    margin-left: auto;
    width: 42px;
    min-width: 42px;
    min-height: 42px;
    height: 42px;
    padding: 0;
    border-radius: 50%;
    flex: 0 0 42px;
  }

  .header-whatsapp .button-label {
    display: none;
  }

  .header-whatsapp .button-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .section-soft {
    padding: 1.85rem 1.1rem;
    border-radius: 28px;
  }

  .section-heading {
    margin-bottom: 1.55rem;
  }

  .two-column,
  .detail-layout,
  .facilitators-grid,
  .pricing-grid {
    gap: 1.2rem;
  }

  .text-block p + p,
  .detail-copy p + p {
    margin-top: 1rem;
  }

  .spacious-list,
  .check-list {
    gap: 0.85rem;
  }

  .check-list li {
    padding-left: 1.7rem;
  }

  .detail-panel,
  .facilitator-copy,
  .faq-list details,
  .final-cta,
  .pricing-card {
    padding: 1.25rem;
  }

  .hero-orbit {
    display: none;
  }

  #taller .detail-copy {
    order: 1;
  }

  #taller .detail-panel {
    order: 2;
  }

  .detail-panel {
    padding: 1.35rem 1.2rem 1.25rem;
  }

  .panel-block + .panel-block {
    margin-top: 1.25rem;
  }

  .panel-note {
    padding: 1rem;
  }

  .facilitator-card {
    border-radius: 26px;
  }

  .facilitator-photo {
    aspect-ratio: 4 / 4;
  }

  .facilitator-copy {
    padding: 1.15rem 1.1rem 1.25rem;
  }

  .faq-list {
    gap: 0.9rem;
  }

  .faq-list details {
    padding: 1.15rem 1.1rem;
    border-radius: 22px;
  }

  .faq-list summary {
    padding-right: 1.6rem;
  }

  .pricing-section {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }

  .pricing-card {
    padding: 1.45rem 1.15rem;
  }

  .pricing-grid {
    gap: 0.7rem;
  }

  .price-pill {
    padding: 1rem 0.9rem;
    border-radius: 20px;
  }

  .price-pill strong {
    font-size: 1.45rem;
  }

  .final-cta {
    padding: 2rem 1.2rem 1.8rem;
  }

  .cta-note {
    margin-top: 1rem;
    font-size: 0.94rem;
  }
}

@media (max-width: 420px) {
  .page-shell {
    width: min(100vw - 0.75rem, 100%);
  }

  .site-header {
    padding: 0.85rem;
  }

  h1 {
    font-size: 2.15rem;
    max-width: 12ch;
  }

  h2 {
    font-size: 1.82rem;
  }

  .hero-image-card-wide {
    min-height: 200px;
  }

  .detail-panel,
  .faq-list details,
  .pricing-card,
  .final-cta {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
