:root {
  --accent: #1487a0;
  --accent-dark: #0d5f70;
  --accent-soft: #5cc3d6;
  --cream: #eef7f9;
  --cream-deep: #dcedf1;
  --ink: #1e2e33;
  --muted: #5c7278;
  --border: #d6e6ea;
  --white: #ffffff;
  --radius: 14px;
  --shadow: 0 6px 24px rgba(20, 40, 46, 0.08);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Nunito Sans", "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.7;
  font-weight: 400;
}

h1, h2, h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  margin: 0 0 0.5em;
  line-height: 1.2;
  font-weight: 600;
}
h2 { font-size: 2.4rem; }
h3 { font-size: 1.5rem; }

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

a { color: var(--accent-dark); }

.section-label {
  text-transform: uppercase;
  letter-spacing: 2.5px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent);
  margin: 0 0 8px;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  z-index: 10;
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
}
.brand-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.brand-logo {
  width: 150px;
  height: auto;
  display: block;
}
.logo {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 700;
  font-size: 1.45rem;
  text-decoration: none;
  color: var(--ink);
  letter-spacing: 0.5px;
}
.logo span { color: var(--accent); }
.main-nav a {
  position: relative;
  margin-left: 26px;
  text-decoration: none;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 600;
  transition: color 0.15s ease;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.25s ease;
}
.main-nav a:hover { color: var(--accent); }
.main-nav a:hover::after { width: 100%; }

/* Art of Living affiliation badge — placeholder icon; swap for the
   official Art of Living Foundation logo image when available */
.aol-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--accent-dark);
  margin-left: 20px;
  flex-shrink: 0;
}
.aol-badge-icon { width: 26px; height: 26px; }
.aol-badge-text {
  font-size: 0.68rem;
  font-weight: 700;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Hero */
.hero {
  position: relative;
  background:
    radial-gradient(ellipse at 20% 10%, rgba(92, 195, 214, 0.20), transparent 55%),
    radial-gradient(ellipse at 85% 80%, rgba(20, 135, 160, 0.14), transparent 50%),
    linear-gradient(160deg, var(--cream), var(--white) 70%);
  padding: 110px 0 90px;
  text-align: center;
  overflow: hidden;
}
.hero-om {
  position: absolute;
  right: -40px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 22rem;
  color: rgba(20, 135, 160, 0.08);
  user-select: none;
  pointer-events: none;
  line-height: 1;
  animation: floatOm 9s ease-in-out infinite;
}
.hero h1 {
  font-size: 3.6rem;
  margin-bottom: 16px;
  font-weight: 700;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.8rem;
  color: var(--accent-dark);
  font-weight: 700;
  margin-bottom: 10px;
}
.hero-tagline {
  font-size: 1.2rem;
  color: var(--muted);
  max-width: 620px;
  margin: 0 auto 34px;
}
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* Hero entrance animation (plays once on load) */
.hero .eyebrow,
.hero h1,
.hero .hero-tagline,
.hero .hero-actions {
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards;
}
.hero .eyebrow { animation-delay: 0.05s; }
.hero h1 { animation-delay: 0.2s; }
.hero .hero-tagline { animation-delay: 0.35s; }
.hero .hero-actions { animation-delay: 0.5s; }

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes floatOm {
  0%, 100% { transform: translateY(-50%) translateX(0); }
  50% { transform: translateY(-53%) translateX(-14px); }
}

.btn {
  display: inline-block;
  padding: 13px 30px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-primary { background: var(--accent); color: var(--white); }
.btn-primary:hover { background: var(--accent-dark); }
.btn-outline { border: 2px solid var(--accent); color: var(--accent-dark); }

/* Sections */
.section { padding: 84px 0; }
.section-alt { background: var(--cream); }
.section-intro { color: var(--muted); margin-top: -4px; margin-bottom: 36px; max-width: 640px; }
.inline-quote {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-style: italic;
  font-size: 1.3rem;
  color: var(--accent-dark);
  margin: -12px 0 36px;
}
.inline-quote span {
  display: block;
  font-family: "Nunito Sans", sans-serif;
  font-style: normal;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 6px;
}

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 56px;
  align-items: start;
}
.photo-placeholder {
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  background: linear-gradient(160deg, var(--cream), var(--cream-deep));
  border: 2px dashed var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  text-align: center;
  font-size: 0.9rem;
}
.placeholder-note {
  text-align: center;
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 8px;
  font-style: italic;
}
.placeholder-block {
  background: #f2fbfc;
  border-left: 3px solid var(--accent);
  padding: 14px 18px;
  border-radius: 6px;
  margin-bottom: 16px;
}
.stats-row {
  display: flex;
  gap: 40px;
  margin-top: 28px;
  flex-wrap: wrap;
}
.stat { text-align: center; }
.stat-number {
  display: block;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}
.stat-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--muted);
}

/* Quote band */
.quote-band {
  background: linear-gradient(135deg, var(--accent-dark), var(--accent));
  color: var(--white);
  padding: 56px 0;
  text-align: center;
}
.quote-band blockquote {
  margin: 0 auto;
  max-width: 720px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.7rem;
  font-style: italic;
  line-height: 1.5;
}
.quote-band cite {
  display: block;
  margin-top: 14px;
  font-family: "Nunito Sans", sans-serif;
  font-size: 0.85rem;
  font-style: normal;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  opacity: 0.85;
}

/* Schedule tabs */
.schedule-tabs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 26px;
}
.tab-btn {
  padding: 10px 20px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--ink);
  font-family: inherit;
  font-weight: 700;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.2s ease;
}
.tab-btn:hover { border-color: var(--accent); color: var(--accent-dark); }
.tab-btn.is-active {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
}

/* Schedule */
.schedule-list { display: grid; gap: 16px; }
.schedule-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  box-shadow: var(--shadow);
}
.schedule-card-main h3 { margin: 0 0 4px; font-size: 1.25rem; }
.schedule-meta { color: var(--muted); font-size: 0.9rem; }
.schedule-status {
  background: var(--accent);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 7px 16px;
  border-radius: 999px;
  white-space: nowrap;
  letter-spacing: 0.5px;
}
.schedule-empty { color: var(--muted); font-style: italic; }
.schedule-card-side {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.btn-register {
  background: var(--accent);
  color: var(--white);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 9px 20px;
  border-radius: 999px;
  transition: background 0.15s ease, transform 0.15s ease;
  white-space: nowrap;
}
.btn-register:hover { background: var(--accent-dark); transform: translateY(-1px); }

/* Courses */
.course-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 26px;
}
.course-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 26px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.course-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.course-card-featured { border-top: 4px solid var(--accent); }
.course-step {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--accent);
  margin-bottom: 10px;
}
.course-card h3 { color: var(--ink); margin-bottom: 4px; }
.course-hook {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-style: italic;
  font-size: 1.1rem;
  color: var(--accent-dark);
  margin: 0 0 12px;
}
.course-card p { color: var(--muted); font-size: 0.95rem; }
.course-facts {
  list-style: none;
  padding: 14px 0 0;
  margin: 14px 0 0;
  border-top: 1px dashed var(--border);
  font-size: 0.85rem;
  color: var(--ink);
}
.course-facts li { padding: 3px 0 3px 22px; position: relative; }
.course-facts li::before {
  content: "\2726";
  position: absolute;
  left: 0;
  color: var(--accent);
}

/* Research */
.research-sources {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px dashed var(--border);
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.6;
}
.research-sources a { color: var(--accent-dark); }
.research-disclaimer {
  margin-top: 30px;
  font-size: 0.82rem;
  font-style: italic;
  color: var(--muted);
  max-width: 720px;
}

/* Testimonials */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 26px;
}
.testimonial {
  margin: 0;
  background: var(--white);
  border-radius: var(--radius);
  padding: 26px;
  border: 1px solid var(--border);
}
.testimonial cite {
  font-style: normal;
  font-size: 0.85rem;
  color: var(--muted);
  font-weight: 600;
}

/* Contact */
.contact-section { text-align: center; }
.contact-inner { max-width: 620px; }
.contact-section .section-intro { margin-left: auto; margin-right: auto; }
.contact-list {
  list-style: none;
  padding: 0;
  display: inline-block;
  text-align: left;
}
.contact-list li { margin-bottom: 12px; }
.contact-list strong { display: inline-block; min-width: 160px; }
.placeholder-inline {
  background: #f2fbfc;
  border-left: 3px solid var(--accent);
  padding: 2px 10px;
  border-radius: 4px;
  font-style: italic;
  color: var(--muted);
}

/* Footer */
.site-footer {
  background: var(--ink);
  color: #cfe3e7;
  padding: 30px 0;
  text-align: center;
  font-size: 0.85rem;
}
.footer-note {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-style: italic;
  font-size: 1rem;
  opacity: 0.75;
  margin-top: 6px;
}

/* Scroll-reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

.course-card.reveal:nth-child(2) { transition-delay: 0.12s; }
.course-card.reveal:nth-child(3) { transition-delay: 0.24s; }
.schedule-card.reveal:nth-child(2) { transition-delay: 0.1s; }
.schedule-card.reveal:nth-child(3) { transition-delay: 0.2s; }
.testimonial.reveal:nth-child(2) { transition-delay: 0.12s; }
.about-text.reveal { transition-delay: 0.1s; }

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .hero .eyebrow, .hero h1, .hero .hero-tagline, .hero .hero-actions,
  .hero-om {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

/* Course flyer placeholder */
.course-flyer {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px dashed var(--border);
  text-align: center;
}
.flyer-placeholder {
  aspect-ratio: 3 / 4;
  max-width: 160px;
  margin: 0 auto 10px;
  border-radius: var(--radius);
  border: 2px dashed var(--border);
  background: linear-gradient(160deg, var(--cream), var(--cream-deep));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 0.8rem;
  text-align: center;
  padding: 10px;
  transition: transform 0.2s ease;
}
.course-card:hover .flyer-placeholder { transform: scale(1.03); }
.flyer-download {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--accent-dark);
  text-decoration: none;
  border-bottom: 1px dashed var(--accent);
  padding-bottom: 2px;
}
.flyer-download:hover { color: var(--accent); }

/* Responsive */
@media (max-width: 720px) {
  .about-grid { grid-template-columns: 1fr; }
  .photo-placeholder { max-width: 240px; margin: 0 auto; }
  .hero h1 { font-size: 2.4rem; }
  .hero-om { display: none; }
  .main-nav a { margin-left: 12px; font-size: 0.8rem; }
  .stats-row { justify-content: center; }
  h2 { font-size: 1.9rem; }
  .aol-badge-text { display: none; }
  .aol-badge { margin-left: 10px; }
}
