/* ==========================================================================
   Gold Mind Meditation - Design System & Styles
   ========================================================================== */

/* --------------------------------------------------------------------------
   CSS Custom Properties (Design Tokens)
   -------------------------------------------------------------------------- */
:root {
  /* Gold Palette */
  --gold-primary: #C9A227;
  --gold-light: #E8D48A;
  --gold-dark: #9A7B0A;
  --gold-gradient: linear-gradient(135deg, #E8D48A 0%, #C9A227 50%, #9A7B0A 100%);

  /* Sage Green Palette */
  --sage-primary: #8FAE8B;
  --sage-light: #B8D4B4;
  --sage-dark: #5C7A59;
  --sage-gradient: linear-gradient(135deg, #B8D4B4 0%, #8FAE8B 100%);

  /* Neutral Palette */
  --cream: #FAF8F3;
  --cream-dark: #F0EDE4;
  --charcoal: #2D3436;
  --charcoal-light: #636E72;
  --white: #FFFFFF;

  /* Typography */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Font Sizes */
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 1.875rem;
  --text-4xl: 2.25rem;
  --text-5xl: 3rem;
  --text-6xl: 3.75rem;

  /* Spacing */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;

  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --shadow-gold: 0 4px 20px rgba(201, 162, 39, 0.3);
  --shadow-sage: 0 4px 20px rgba(143, 174, 139, 0.3);

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 300ms ease;
  --transition-slow: 500ms ease;

  /* Container */
  --container-max: 1200px;
  --container-padding: var(--space-6);
}

/* --------------------------------------------------------------------------
   Reset & Base Styles
   -------------------------------------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.6;
  color: var(--charcoal);
  background-color: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

ul,
ol {
  list-style: none;
}

/* --------------------------------------------------------------------------
   Typography
   -------------------------------------------------------------------------- */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
  color: var(--charcoal);
}

h1 {
  font-size: var(--text-5xl);
  letter-spacing: -0.02em;
}

h2 {
  font-size: var(--text-4xl);
  letter-spacing: -0.01em;
}

h3 {
  font-size: var(--text-2xl);
}

h4 {
  font-size: var(--text-xl);
}

p {
  margin-bottom: var(--space-4);
  color: var(--charcoal-light);
}

.text-gold {
  color: var(--gold-primary);
}

.text-sage {
  color: var(--sage-dark);
}

.text-center {
  text-align: center;
}

/* --------------------------------------------------------------------------
   Layout
   -------------------------------------------------------------------------- */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.section {
  padding: var(--space-20) 0;
}

.section--cream {
  background-color: var(--cream);
}

.section--white {
  background-color: var(--white);
}

.section--sage {
  background-color: var(--sage-light);
}

.grid {
  display: grid;
  gap: var(--space-8);
}

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

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

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

.flex {
  display: flex;
}

.flex--center {
  align-items: center;
  justify-content: center;
}

.flex--between {
  align-items: center;
  justify-content: space-between;
}

.flex--gap {
  gap: var(--space-4);
}

/* --------------------------------------------------------------------------
   Navigation
   -------------------------------------------------------------------------- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: var(--space-4) 0;
  background: rgba(250, 248, 243, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  transition: all var(--transition-base);
}

.nav__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: 600;
  color: var(--charcoal);
}

.nav__logo img {
  height: 45px;
  width: auto;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: var(--space-8);
}

.nav__link {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--charcoal-light);
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-full);
  transition: all var(--transition-fast);
}

.nav__link:hover {
  color: var(--charcoal);
  background-color: var(--cream-dark);
}

.nav__link--active {
  color: var(--gold-dark);
  background-color: var(--gold-light);
}

.nav__cta {
  margin-left: var(--space-4);
}

/* Mobile Navigation */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--space-2);
  background: none;
  border: none;
  cursor: pointer;
}

.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--charcoal);
  transition: all var(--transition-fast);
}

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--space-4) var(--space-8);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: none;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all var(--transition-base);
}

.btn--primary {
  background: var(--gold-gradient);
  color: var(--white);
  box-shadow: var(--shadow-gold);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(201, 162, 39, 0.4);
}

.btn--secondary {
  background: var(--sage-gradient);
  color: var(--white);
  box-shadow: var(--shadow-sage);
}

.btn--secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(143, 174, 139, 0.4);
}

.btn--outline {
  background: transparent;
  color: var(--charcoal);
  border: 2px solid var(--charcoal);
}

.btn--outline:hover {
  background: var(--charcoal);
  color: var(--white);
}

.btn--outline-gold {
  background: transparent;
  color: var(--gold-dark);
  border: 2px solid var(--gold-primary);
}

.btn--outline-gold:hover {
  background: var(--gold-gradient);
  color: var(--white);
}

.btn--large {
  padding: var(--space-5) var(--space-10);
  font-size: var(--text-base);
}

.btn--small {
  padding: var(--space-2) var(--space-5);
  font-size: var(--text-xs);
}

/* --------------------------------------------------------------------------
   Hero Section
   -------------------------------------------------------------------------- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 100px;
  position: relative;
  overflow: hidden;
}

.hero__background {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  z-index: 0;
}

.hero__shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.5;
}

.hero__shape--1 {
  top: 10%;
  right: 10%;
  width: 400px;
  height: 400px;
  background: var(--sage-light);
}

.hero__shape--2 {
  top: 50%;
  right: 25%;
  width: 250px;
  height: 250px;
  background: var(--gold-light);
}

.hero__shape--3 {
  bottom: 10%;
  right: 5%;
  width: 150px;
  height: 150px;
  background: var(--sage-primary);
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 600px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-4);
  background-color: var(--sage-light);
  color: var(--sage-dark);
  font-size: var(--text-sm);
  font-weight: 500;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-6);
}

.hero__title {
  font-size: var(--text-6xl);
  margin-bottom: var(--space-6);
  line-height: 1.1;
}

.hero__title span {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__subtitle {
  font-size: var(--text-lg);
  color: var(--charcoal-light);
  margin-bottom: var(--space-8);
  line-height: 1.7;
}

.hero__ctas {
  display: flex;
  gap: var(--space-4);
  margin-bottom: var(--space-8);
  flex-wrap: wrap;
}

.hero__schedule {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-4) var(--space-6);
  background-color: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.hero__schedule-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--sage-light);
  border-radius: var(--radius-md);
  font-size: var(--text-xl);
}

.hero__schedule-text {
  font-size: var(--text-sm);
  color: var(--charcoal-light);
}

.hero__schedule-time {
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--charcoal);
}

.hero__image {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  max-width: 450px;
}

.hero__image img {
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.1));
}

/* --------------------------------------------------------------------------
   Cards
   -------------------------------------------------------------------------- */
.card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.card__icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--sage-light);
  border-radius: var(--radius-lg);
  font-size: var(--text-2xl);
  margin-bottom: var(--space-5);
}

.card__icon--gold {
  background: var(--gold-light);
}

.card__icon--image {
  background: transparent;
  padding: 0;
}

.card__icon--image img {
  width: 64px;
  height: 64px;
  object-fit: contain;
}

.card__title {
  font-size: var(--text-xl);
  margin-bottom: var(--space-3);
}

.card__text {
  color: var(--charcoal-light);
  margin-bottom: 0;
}

/* --------------------------------------------------------------------------
   Benefits Section
   -------------------------------------------------------------------------- */
.benefits {
  background: var(--white);
}

.benefits__header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto var(--space-16);
}

.benefits__subtitle {
  color: var(--gold-primary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: var(--text-sm);
  margin-bottom: var(--space-4);
}

.benefits__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-8);
}

/* --------------------------------------------------------------------------
   Quote Section
   -------------------------------------------------------------------------- */
.quote {
  background: var(--sage-light);
  padding: var(--space-20) 0;
  text-align: center;
}

.quote__content {
  max-width: 800px;
  margin: 0 auto;
}

.quote__icon {
  font-size: var(--text-5xl);
  color: var(--sage-dark);
  opacity: 0.3;
  margin-bottom: var(--space-6);
}

.quote__text {
  font-family: var(--font-heading);
  font-size: var(--text-3xl);
  font-weight: 500;
  color: var(--charcoal);
  font-style: italic;
  margin-bottom: var(--space-6);
  line-height: 1.4;
}

.quote__author {
  font-size: var(--text-lg);
  color: var(--sage-dark);
  font-weight: 600;
}

/* --------------------------------------------------------------------------
   CTA Section
   -------------------------------------------------------------------------- */
.cta {
  background: linear-gradient(135deg, var(--charcoal) 0%, #1a1a2e 100%);
  padding: var(--space-20) 0;
  text-align: center;
}

.cta__content {
  max-width: 700px;
  margin: 0 auto;
}

.cta__title {
  color: var(--white);
  margin-bottom: var(--space-6);
}

.cta__text {
  color: rgba(255, 255, 255, 0.7);
  font-size: var(--text-lg);
  margin-bottom: var(--space-8);
}

.cta__buttons {
  display: flex;
  justify-content: center;
  gap: var(--space-4);
  flex-wrap: wrap;
}

/* --------------------------------------------------------------------------
   Newsletter Section
   -------------------------------------------------------------------------- */
.newsletter {
  background: var(--cream-dark);
  padding: var(--space-16) 0;
}

.newsletter__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-8);
  flex-wrap: wrap;
}

.newsletter__text {
  flex: 1;
  min-width: 300px;
  padding: 0 var(--space-6);
}

.newsletter__title {
  font-size: var(--text-2xl);
  margin-bottom: var(--space-2);
}

.newsletter__subtitle {
  color: var(--charcoal-light);
  margin-bottom: 0;
}

.newsletter__form {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  flex: 1;
  max-width: 500px;
}

.newsletter__form-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3);
}

.newsletter__input {
  width: 100%;
  padding: var(--space-4) var(--space-6);
  font-family: var(--font-body);
  font-size: var(--text-base);
  border: 2px solid var(--cream);
  border-radius: var(--radius-full);
  background: var(--white);
  transition: border-color var(--transition-fast);
}

.newsletter__input:focus {
  outline: none;
  border-color: var(--gold-primary);
}

.newsletter__input::placeholder {
  color: var(--charcoal-light);
}

@media (max-width: 600px) {
  .newsletter__form-group {
    grid-template-columns: 1fr;
  }
}

.form-message {
  font-size: var(--text-sm);
  line-height: 1.5;
  text-align: center;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-5px);
  }

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

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.footer {
  background: var(--charcoal);
  color: var(--white);
  padding: var(--space-16) 0 var(--space-8);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-12);
  margin-bottom: var(--space-12);
}

.footer__brand {
  max-width: 300px;
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: 600;
  margin-bottom: var(--space-4);
}

.footer__logo img {
  height: 40px;
  width: auto;
}

.footer__description {
  color: rgba(255, 255, 255, 0.6);
  font-size: var(--text-sm);
  line-height: 1.7;
}

.footer__title {
  font-size: var(--text-sm);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-5);
  color: var(--gold-light);
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.footer__link {
  color: rgba(255, 255, 255, 0.6);
  font-size: var(--text-sm);
  transition: color var(--transition-fast);
}

.footer__link:hover {
  color: var(--white);
}

.footer__bottom {
  padding-top: var(--space-8);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-4);
}

.footer__copyright {
  color: rgba(255, 255, 255, 0.4);
  font-size: var(--text-sm);
}

.footer__disclaimer {
  width: 100%;
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: var(--text-xs);
  font-style: italic;
  margin-bottom: var(--space-4);
  order: -1;
}

.footer__legal {
  display: flex;
  gap: var(--space-6);
}

.footer__legal a {
  color: rgba(255, 255, 255, 0.4);
  font-size: var(--text-sm);
}

.footer__legal a:hover {
  color: var(--white);
}

/* --------------------------------------------------------------------------
   Page Header
   -------------------------------------------------------------------------- */
.page-header {
  padding: 150px 0 var(--space-16);
  background: linear-gradient(135deg, var(--sage-light) 0%, var(--cream) 100%);
  text-align: center;
}

.page-header__title {
  margin-bottom: var(--space-4);
}

.page-header__subtitle {
  font-size: var(--text-lg);
  color: var(--charcoal-light);
  max-width: 600px;
  margin: 0 auto;
}

/* --------------------------------------------------------------------------
   Content Sections
   -------------------------------------------------------------------------- */
.content {
  padding: var(--space-16) 0;
}

.content__wrapper {
  max-width: 800px;
  margin: 0 auto;
}

.content h2 {
  margin-top: var(--space-12);
  margin-bottom: var(--space-6);
}

.content h3 {
  margin-top: var(--space-8);
  margin-bottom: var(--space-4);
}

.content p {
  margin-bottom: var(--space-6);
  line-height: 1.8;
}

.content ol {
  counter-reset: step;
  list-style: none;
}

.content ol li {
  counter-increment: step;
  padding: var(--space-4) 0;
  padding-left: var(--space-12);
  position: relative;
  border-bottom: 1px solid var(--cream-dark);
}

.content ol li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: var(--space-4);
  width: 32px;
  height: 32px;
  background: var(--sage-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: var(--text-sm);
  color: var(--sage-dark);
}

/* --------------------------------------------------------------------------
   Resources
   -------------------------------------------------------------------------- */
.resources__section {
  margin-bottom: var(--space-12);
}

.resources__title {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-6);
}

.resources__title-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-light);
  border-radius: var(--radius-md);
  font-size: var(--text-xl);
}

.resource-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  margin-bottom: var(--space-4);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
}

.resource-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.resource-card__title {
  font-size: var(--text-lg);
  margin-bottom: var(--space-2);
}

.resource-card__author {
  color: var(--gold-dark);
  font-size: var(--text-sm);
  font-weight: 500;
  margin-bottom: var(--space-3);
}

.resource-card__text {
  color: var(--charcoal-light);
  font-size: var(--text-sm);
  margin-bottom: var(--space-4);
}

.resource-card__link {
  color: var(--sage-dark);
  font-size: var(--text-sm);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
}

.resource-card__link:hover {
  color: var(--gold-primary);
}

/* --------------------------------------------------------------------------
   Contact Form
   -------------------------------------------------------------------------- */
.contact-form {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: var(--space-10);
  box-shadow: var(--shadow-lg);
}

.form__group {
  margin-bottom: var(--space-6);
}

.form__label {
  display: block;
  font-size: var(--text-sm);
  font-weight: 600;
  margin-bottom: var(--space-2);
  color: var(--charcoal);
}

.form__input,
.form__textarea {
  width: 100%;
  padding: var(--space-4);
  font-family: var(--font-body);
  font-size: var(--text-base);
  border: 2px solid var(--cream-dark);
  border-radius: var(--radius-md);
  background: var(--cream);
  transition: all var(--transition-fast);
}

.form__input:focus,
.form__textarea:focus {
  outline: none;
  border-color: var(--gold-primary);
  background: var(--white);
}

.form__textarea {
  min-height: 150px;
  resize: vertical;
}

/* --------------------------------------------------------------------------
   Videos Grid
   -------------------------------------------------------------------------- */
.videos-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-8);
}

.video-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.video-card__embed {
  aspect-ratio: 16/9;
  background: var(--charcoal);
}

.video-card__embed iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.video-card__content {
  padding: var(--space-6);
}

.video-card__title {
  font-size: var(--text-lg);
  margin-bottom: var(--space-2);
}

/* --------------------------------------------------------------------------
   Blog
   -------------------------------------------------------------------------- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-8);
}

.blog-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.blog-card__image {
  aspect-ratio: 16/10;
  background: var(--sage-light);
}

.blog-card__content {
  padding: var(--space-6);
}

.blog-card__date {
  color: var(--gold-primary);
  font-size: var(--text-sm);
  font-weight: 500;
  margin-bottom: var(--space-2);
}

.blog-card__title {
  font-size: var(--text-lg);
  margin-bottom: var(--space-3);
}

.blog-card__excerpt {
  color: var(--charcoal-light);
  font-size: var(--text-sm);
  margin-bottom: var(--space-4);
}

.blog-card__link {
  color: var(--sage-dark);
  font-size: var(--text-sm);
  font-weight: 600;
}

/* --------------------------------------------------------------------------
   Responsive Styles
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
  .hero__image {
    display: none;
  }

  .hero__content {
    max-width: 100%;
    text-align: center;
  }

  .hero__ctas {
    justify-content: center;
  }

  .hero__schedule {
    margin: 0 auto;
  }

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

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

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

@media (max-width: 768px) {
  :root {
    --text-6xl: 2.5rem;
    --text-5xl: 2rem;
    --text-4xl: 1.75rem;
  }

  .nav__links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: var(--space-6);
    gap: var(--space-4);
    box-shadow: var(--shadow-lg);
  }

  .nav__links.active {
    display: flex;
  }

  .nav__toggle {
    display: flex;
  }

  .nav__cta {
    margin-left: 0;
  }

  .hero {
    min-height: auto;
    padding: 120px 0 var(--space-16);
  }

  .hero__ctas {
    flex-direction: column;
    align-items: center;
  }

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

  .newsletter__content {
    flex-direction: column;
    text-align: center;
  }

  .newsletter__form {
    flex-direction: column;
    width: 100%;
    max-width: none;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer__brand {
    max-width: none;
  }

  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }

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

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

  .grid--2,
  .grid--3,
  .grid--4 {
    grid-template-columns: 1fr;
  }
}

/* --------------------------------------------------------------------------
   Utility Classes
   -------------------------------------------------------------------------- */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.mb-0 {
  margin-bottom: 0;
}

.mb-4 {
  margin-bottom: var(--space-4);
}

.mb-8 {
  margin-bottom: var(--space-8);
}

.mb-12 {
  margin-bottom: var(--space-12);
}

.mb-16 {
  margin-bottom: var(--space-16);
}

.mt-8 {
  margin-top: var(--space-8);
}

.mt-12 {
  margin-top: var(--space-12);
}

.pt-0 {
  padding-top: 0;
}

.pb-0 {
  padding-bottom: 0;
}

/* --------------------------------------------------------------------------
   Animations
   -------------------------------------------------------------------------- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

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

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

.animate-fade-in-up {
  animation: fadeInUp 0.6s ease forwards;
}

.animate-float {
  animation: float 3s ease-in-out infinite;
}

.animate-delay-1 {
  animation-delay: 0.1s;
}

.animate-delay-2 {
  animation-delay: 0.2s;
}

.animate-delay-3 {
  animation-delay: 0.3s;
}

.animate-delay-4 {
  animation-delay: 0.4s;
}

.animate-delay-5 {
  animation-delay: 0.5s;
}