:root {
  --ivory: #fbf6ed;
  --paper: #fffaf3;
  --stone: #e7dfd2;
  --sand: #d9cab6;
  --sage: #7f8564;
  --sage-deep: #4b5035;
  --lavender: #a782b9;
  --lavender-deep: #73527f;
  --lavender-soft: #e7dced;
  --gold: #b99552;
  --ink: #30331f;
  --muted: #6f6c5e;
  --white: #ffffff;
  --shadow: 0 22px 60px rgba(66, 71, 46, 0.16);
  --header-height: 162px;
  --radius: 8px;
  --hero-logo: "Cinzel", Georgia, "Times New Roman", serif;
  --display: "Nothing You Could Do", "Kalam", "Bradley Hand", "Segoe Print", cursive;
  --serif: Georgia, "Times New Roman", serif;
  --sans: "Avenir Next", Avenir, "Segoe UI", system-ui, sans-serif;
}

@font-face {
  font-family: "Cinzel";
  src: url("assets/fonts/cinzel-regular.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Nothing You Could Do";
  src: url("assets/fonts/nothing-you-could-do-regular.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Kalam";
  src: url("assets/fonts/kalam-regular.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Kalam";
  src: url("assets/fonts/kalam-bold.ttf") format("truetype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

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

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--ivory);
  font-family: var(--sans);
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

a {
  color: inherit;
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

:focus-visible {
  outline: 3px solid rgba(167, 141, 182, 0.75);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 100;
  transform: translateY(-140%);
  background: var(--paper);
  color: var(--ink);
  padding: 10px 14px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.skip-link:focus {
  transform: translateY(0);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.announcement-bar {
  position: relative;
  z-index: 20;
  overflow: hidden;
  background: var(--lavender-deep);
  color: var(--paper);
  border-bottom: 1px solid rgba(255, 250, 243, 0.2);
}

.announcement-bar__track {
  display: flex;
  width: max-content;
  min-width: 100%;
  gap: 56px;
  padding: 8px 0;
  white-space: nowrap;
  animation: announcement-scroll 26s linear infinite;
}

.announcement-bar__track span {
  padding-left: 56px;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.035em;
  text-transform: none;
  opacity: 0.96;
}

@keyframes announcement-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-33.333%);
  }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  min-height: var(--header-height);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px clamp(18px, 4vw, 48px) 14px;
  background: var(--sage-deep);
  border-bottom: 1px solid rgba(255, 250, 243, 0.18);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
}

.brand img {
  width: 104px;
  height: 104px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 0 4px rgba(255, 250, 243, 0.22);
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 2vw, 28px);
  font-size: 0.98rem;
  color: var(--paper);
}

.site-nav a {
  text-decoration: none;
  position: relative;
  padding: 8px 0;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 1px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(115, 82, 127, 0.28);
  border-radius: var(--radius);
  background: rgba(255, 250, 243, 0.94);
  padding: 10px;
  box-shadow: 0 10px 26px rgba(48, 51, 31, 0.22);
}

.menu-toggle span:not(.sr-only) {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--sage-deep);
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: calc(100svh - var(--header-height) - 44px);
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: clamp(34px, 5vw, 56px) clamp(18px, 4vw, 48px);
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(251, 246, 237, 0.86) 0%, rgba(251, 246, 237, 0.72) 42%, rgba(251, 246, 237, 0.34) 72%, rgba(251, 246, 237, 0.16) 100%),
    url("assets/images/hero-meditation-chakras.jpg") center right / cover no-repeat;
  transform: scale(1.02);
}

.hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 16% 22%, rgba(231, 220, 237, 0.42), transparent 34%),
    radial-gradient(circle at 76% 76%, rgba(167, 130, 185, 0.12), transparent 34%);
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: block;
}

.hero__content {
  position: relative;
  z-index: 1;
  width: min(720px, 100%);
  padding-top: 16px;
}

.eyebrow,
.tag {
  color: var(--lavender-deep);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  font-weight: 700;
  margin: 0 0 12px;
}

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

h1,
h2,
h3 {
  color: var(--sage-deep);
}

h1 {
  font-family: var(--display);
  font-size: 7.4rem;
  line-height: 0.9;
  letter-spacing: 0.02em;
  font-weight: 400;
  margin-bottom: 16px;
}

#hero-title {
  font-family: var(--hero-logo);
  font-size: 5.9rem;
  line-height: 0.92;
  letter-spacing: 0.16em;
  font-weight: 400;
  text-transform: uppercase;
}

h2 {
  font-family: var(--display);
  font-size: 4.2rem;
  line-height: 1;
  letter-spacing: 0;
  font-weight: 400;
  margin-bottom: 18px;
  text-wrap: balance;
}

h3 {
  font-family: var(--display);
  font-size: 2rem;
  line-height: 1.12;
  letter-spacing: 0;
  font-weight: 400;
  margin-bottom: 10px;
}

.hero__baseline {
  max-width: min(100%, 660px);
  font-size: 1.62rem;
  color: var(--lavender);
  font-family: var(--display);
  font-weight: 400;
  line-height: 1.18;
  margin-bottom: 14px;
}

.hero__text {
  width: min(620px, 100%);
  color: var(--muted);
  font-size: 1.1rem;
  margin-bottom: 22px;
}

.hero__actions,
.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  padding: 12px 18px;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button--primary {
  color: var(--paper);
  background: var(--lavender-deep);
  box-shadow: 0 16px 34px rgba(115, 82, 127, 0.24);
}

.button--primary:hover {
  background: #654371;
}

.button--ghost {
  color: var(--lavender-deep);
  background: rgba(255, 250, 243, 0.72);
  border-color: rgba(167, 130, 185, 0.28);
}

.section {
  padding: clamp(72px, 10vw, 132px) clamp(18px, 4vw, 48px);
  scroll-margin-top: calc(var(--header-height) + 20px);
}

.section__inner {
  width: min(1160px, 100%);
  margin: 0 auto;
}

.section-heading {
  width: min(780px, 100%);
}

.section-heading p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.04rem;
}

.section--story {
  background:
    linear-gradient(180deg, var(--ivory), var(--paper));
}

.story-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1fr);
  gap: clamp(28px, 7vw, 86px);
  align-items: start;
}

.story-copy {
  font-size: 1.14rem;
  color: var(--muted);
  border-left: 1px solid rgba(167, 130, 185, 0.32);
  padding-left: clamp(24px, 4vw, 46px);
}

.founders {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(22px, 4vw, 42px);
  margin-top: clamp(42px, 7vw, 86px);
}

.founder-card {
  background: rgba(255, 250, 243, 0.82);
  border: 1px solid rgba(167, 130, 185, 0.2);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.founder-card img {
  width: 100%;
  aspect-ratio: 5 / 5.9;
  object-fit: cover;
}

.founder-card__content {
  padding: clamp(24px, 4vw, 36px);
}

.founder-card__content p:last-child {
  color: var(--muted);
  margin-bottom: 0;
}

.yoga-gallery {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr) minmax(0, 1fr);
  gap: 16px;
  margin-top: clamp(34px, 6vw, 68px);
  align-items: end;
}

.yoga-gallery__item {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid rgba(167, 130, 185, 0.2);
  box-shadow: var(--shadow);
  background: var(--paper);
}

.yoga-gallery__item img {
  width: 100%;
  aspect-ratio: 4 / 3.4;
  object-fit: cover;
}

.yoga-gallery__item--wide img {
  aspect-ratio: 4 / 3;
}

.yoga-gallery__item--tall img {
  aspect-ratio: 4 / 5.2;
}

.section--practices {
  background:
    linear-gradient(180deg, rgba(231, 220, 237, 0.62), rgba(251, 246, 237, 0.24)),
    var(--ivory);
}

.practice-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: clamp(32px, 5vw, 56px);
}

.practice-item {
  min-height: 250px;
  padding: 26px;
  border-radius: var(--radius);
  background: rgba(255, 250, 243, 0.78);
  border: 1px solid rgba(167, 130, 185, 0.25);
  position: relative;
  overflow: hidden;
}

.practice-item::after {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  right: 0;
  top: 0;
  border: 1px solid rgba(167, 130, 185, 0.24);
  border-radius: 50%;
  transform: translate(40%, -40%);
}

.practice-item--wide {
  grid-column: span 2;
}

.practice-item__mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 24px;
  border-radius: 50%;
  background: var(--lavender);
  color: var(--paper);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  font-weight: 700;
}

.practice-item p {
  color: var(--muted);
  margin-bottom: 0;
}

.section--sound {
  padding-top: clamp(56px, 8vw, 96px);
  background: var(--paper);
}

.sound-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: center;
}

.sound-image {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.sound-image img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

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

.note,
.pricing-note,
.privacy-note {
  font-size: 0.92rem;
  color: var(--muted);
}

.section--schedule {
  background:
    linear-gradient(180deg, rgba(231, 220, 237, 0.42), rgba(251, 246, 237, 0.92));
}

.schedule-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
  gap: clamp(24px, 4vw, 42px);
  margin-top: 34px;
}

.schedule-list,
.place,
.pricing-list,
.signup-form {
  border-radius: var(--radius);
  background: rgba(255, 250, 243, 0.84);
  border: 1px solid rgba(185, 149, 82, 0.22);
  box-shadow: var(--shadow);
}

.schedule-row {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 24px;
  padding: clamp(22px, 4vw, 34px);
  border-bottom: 1px solid rgba(185, 149, 82, 0.18);
}

.schedule-row:last-child {
  border-bottom: 0;
}

.schedule-row time {
  color: var(--lavender);
  font-size: 1.2rem;
  font-weight: 800;
}

.schedule-row p {
  margin-bottom: 0;
  color: var(--muted);
}

.trial-note {
  margin-top: 8px;
  color: var(--lavender-deep);
  font-size: 0.92rem;
  font-weight: 800;
}

.place {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-style: normal;
  padding: clamp(24px, 4vw, 34px);
}

.place strong {
  font-family: var(--display);
  font-size: 1.6rem;
  color: var(--sage-deep);
  font-weight: 400;
}

.text-link {
  color: var(--sage-deep);
  text-decoration-color: var(--lavender);
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
  font-weight: 800;
  width: fit-content;
}

.section--pricing {
  background: var(--paper);
}

.pricing-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.78fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: start;
}

.pricing-list {
  overflow: hidden;
}

.price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: clamp(24px, 4vw, 34px);
  border-bottom: 1px solid rgba(185, 149, 82, 0.18);
}

.price-row--highlight {
  background: rgba(221, 209, 230, 0.32);
}

.price-row p,
.pricing-note {
  margin-bottom: 0;
  color: var(--muted);
}

.price-row .price-amount {
  flex: 0 0 auto;
  color: var(--lavender-deep);
  font-family: var(--sans);
  font-size: 1.42rem;
  font-weight: 800;
  line-height: 1.15;
}

.pricing-note {
  padding: 20px clamp(24px, 4vw, 34px) 26px;
}

.section--form {
  background:
    linear-gradient(135deg, rgba(115, 82, 127, 0.92), rgba(167, 130, 185, 0.78)),
    var(--lavender-deep);
  color: var(--paper);
}

.section--form h2,
.section--form .eyebrow {
  color: var(--paper);
}

.form-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.78fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: start;
}

.form-copy p:not(.eyebrow) {
  color: rgba(255, 250, 243, 0.78);
}

.signup-form {
  padding: clamp(24px, 4vw, 36px);
  color: var(--ink);
  background: var(--paper);
}

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

.form-grid__full {
  grid-column: 1 / -1;
}

.signup-form label {
  display: grid;
  gap: 8px;
  color: var(--lavender-deep);
  font-weight: 800;
}

.signup-form input,
.signup-form select,
.signup-form textarea {
  width: 100%;
  border: 1px solid rgba(66, 71, 46, 0.18);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  padding: 12px 13px;
}

.signup-form textarea {
  resize: vertical;
}

.consent {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: start;
  gap: 12px;
  margin: 20px 0;
  font-weight: 500;
  color: var(--muted);
}

.consent input {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  accent-color: var(--lavender);
}

.form-status {
  min-height: 24px;
  margin: 14px 0 0;
  color: var(--sage-deep);
  font-weight: 800;
}

.privacy-note {
  margin: 12px 0 0;
}

.section--contact {
  background:
    linear-gradient(180deg, rgba(231, 220, 237, 0.26), rgba(251, 246, 237, 0.96)),
    var(--ivory);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.82fr) minmax(0, 1fr);
  gap: clamp(26px, 5vw, 70px);
  align-items: center;
}

.contact-image {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid rgba(167, 130, 185, 0.18);
}

.contact-image img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center;
}

.contact-panel {
  padding: clamp(24px, 4vw, 44px);
  border-radius: var(--radius);
  background: rgba(255, 250, 243, 0.76);
  border: 1px solid rgba(167, 130, 185, 0.24);
  box-shadow: var(--shadow);
}

.contact-panel p:not(.eyebrow) {
  color: var(--muted);
}

.contact-list {
  display: grid;
  gap: 12px;
  margin-top: 26px;
}

.contact-list a {
  padding: 14px 16px;
  border: 1px solid rgba(167, 130, 185, 0.22);
  border-radius: var(--radius);
  color: var(--lavender-deep);
  background: rgba(255, 255, 255, 0.48);
  text-decoration-color: var(--lavender);
  text-underline-offset: 4px;
  font-weight: 800;
}

.contact-list a:last-child {
  border-bottom: 1px solid rgba(167, 130, 185, 0.22);
}

.contact-meta {
  margin: 24px 0 0;
  font-size: 0.95rem;
}

.legal-section {
  padding: 48px clamp(18px, 4vw, 48px);
  background: #f3eadf;
  color: var(--muted);
  scroll-margin-top: calc(var(--header-height) + 20px);
}

.legal-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(24px, 5vw, 64px);
  font-size: 0.92rem;
}

.legal-layout h2 {
  font-size: 1.6rem;
  margin-bottom: 12px;
}

.legal-button {
  border: 0;
  background: transparent;
  padding: 0;
}

.site-footer {
  padding: 22px clamp(18px, 4vw, 48px);
  background: var(--lavender-deep);
  color: var(--paper);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-inner p {
  margin: 0;
}

.footer-inner a {
  text-underline-offset: 4px;
}

.footer-credit {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}

.rebirth-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: inherit;
  font-weight: 700;
  text-decoration-thickness: 1px;
}

.rebirth-link img {
  width: auto;
  height: 24px;
  flex: 0 0 auto;
  object-fit: contain;
}

.cookie-banner {
  position: fixed;
  z-index: 80;
  left: clamp(14px, 3vw, 28px);
  right: clamp(14px, 3vw, 28px);
  bottom: clamp(14px, 3vw, 28px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px;
  border-radius: var(--radius);
  background: rgba(255, 250, 243, 0.98);
  border: 1px solid rgba(66, 71, 46, 0.16);
  box-shadow: 0 24px 70px rgba(48, 51, 31, 0.2);
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner p {
  margin: 0;
}

.cookie-banner p + p {
  color: var(--muted);
  font-size: 0.92rem;
}

.reveal {
  opacity: 1;
  transform: none;
  transition: opacity 720ms ease, transform 720ms ease;
}

.reveal.will-reveal {
  opacity: 1;
  transform: translateY(28px);
}

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

@media (max-width: 940px) {
  .menu-toggle {
    display: block;
    position: fixed;
    top: calc(var(--header-height) / 2);
    right: clamp(18px, 4vw, 48px);
    transform: translateY(-50%);
    z-index: 60;
  }

  .site-nav {
    position: fixed;
    inset: var(--header-height) 14px auto 14px;
    display: grid;
    gap: 4px;
    padding: 16px;
    background: rgba(255, 250, 243, 0.98);
    border: 1px solid rgba(66, 71, 46, 0.14);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    color: var(--sage-deep);
    opacity: 0;
    transform: translateY(-12px);
    pointer-events: none;
    transition: opacity 180ms ease, transform 180ms ease;
  }

  body.nav-open .site-nav {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

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

  .hero {
    min-height: calc(100svh - var(--header-height) - 34px);
  }

  h1 {
    font-size: 5.6rem;
  }

  #hero-title {
    font-size: 4.5rem;
  }

  h2 {
    font-size: 3.55rem;
    line-height: 1.04;
  }

  h3 {
    font-size: 1.85rem;
  }

  .hero__baseline {
    font-size: 1.36rem;
  }

  .hero__media {
    background:
      linear-gradient(90deg, rgba(251, 246, 237, 0.9) 0%, rgba(251, 246, 237, 0.72) 48%, rgba(251, 246, 237, 0.12) 100%),
      linear-gradient(180deg, rgba(251, 246, 237, 0.12) 0%, rgba(251, 246, 237, 0.32) 56%, rgba(251, 246, 237, 0.82) 100%),
      url("assets/images/hero-meditation-chakras.jpg") 82% center / auto 116% no-repeat;
  }

  .hero__inner {
    display: block;
  }

  .story-layout,
  .sound-layout,
  .schedule-layout,
  .pricing-layout,
  .form-layout,
  .contact-layout,
  .legal-layout {
    grid-template-columns: 1fr;
  }

  .story-copy {
    border-left: 0;
    padding-left: 0;
  }

  .founders,
  .practice-grid,
  .yoga-gallery {
    grid-template-columns: 1fr;
  }

  .practice-item--wide {
    grid-column: auto;
  }
}

@media (max-width: 640px) {
  :root {
    --header-height: 102px;
  }

  .site-header {
    padding: 8px 14px;
    gap: 0;
  }

  .menu-toggle {
    right: 14px;
  }

  .brand img {
    width: 68px;
    height: 68px;
  }

  h1 {
    font-size: 3.55rem;
    letter-spacing: 0.025em;
  }

  #hero-title {
    font-size: 2.72rem;
    letter-spacing: 0.065em;
  }

  h2 {
    font-size: 2.44rem;
    line-height: 1.08;
  }

  h3 {
    font-size: 1.68rem;
  }

  .hero__baseline {
    width: min(100%, 320px);
    font-size: 1.16rem;
  }

  .hero {
    padding-top: 34px;
  }

  .hero__media {
    background:
      linear-gradient(90deg, rgba(251, 246, 237, 0.91) 0%, rgba(251, 246, 237, 0.74) 46%, rgba(251, 246, 237, 0.1) 100%),
      linear-gradient(180deg, rgba(251, 246, 237, 0.04) 0%, rgba(251, 246, 237, 0.28) 54%, rgba(251, 246, 237, 0.84) 100%),
      url("assets/images/hero-meditation-chakras.jpg") 78% 44% / auto 114% no-repeat;
  }

  .hero__actions,
  .cookie-banner,
  .cookie-banner__actions,
  .price-row,
  .footer-inner {
    align-items: stretch;
    flex-direction: column;
  }

  .footer-credit {
    justify-content: center;
    text-align: center;
  }

  .button {
    width: 100%;
  }

  .schedule-row,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .price-row .price-amount {
    width: 100%;
  }
}

@media (max-width: 390px) {
  h2 {
    font-size: 2.28rem;
  }

  #hero-title {
    font-size: 2.45rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .announcement-bar__track {
    animation: none;
  }
}
