/* ========================================
   1st60DAYS — Unified V4 Design System
   Light palette (V2) + interactive features (V3) - Build Trigger
   ======================================== */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Lora:wght@400;500;600;700&family=Nunito:wght@400;500;600;700;800&display=swap');

/* --- Design Tokens --- */
:root {
  --bg: #FDFBF7;
  --white: #ffffff;
  --text: #2C3E50;
  --muted: #5D6D7E;
  --primary: #a66751;
  --primary-dark: #778252;
  --secondary: #EAF0EB;
  --border: #e2ddd6;
  --lavender: #9baa6c;
  --amber: #fde39b;
  --amber-dark: #f1cf86;
  --green-soft: #d1fae5;
  --green-check: #778252;
  --radius: 8px;
  --radius-pill: 100px;
  --shadow-card: 0 2px 8px rgba(44, 62, 80, 0.06);
  --shadow-hover: 0 8px 24px rgba(44, 62, 80, 0.10);
  --font-heading: 'Lora', serif;
  --font-body: 'Nunito', sans-serif;
  --transition: 0.25s ease;
}

/* --- Reset --- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-heading);
  color: var(--text);
  line-height: 1.25;
}

/* --- Container --- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 32px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  text-decoration: none;
  box-sizing: border-box;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 2px solid var(--border);
}

.btn-outline:hover {
  border-color: rgba(44, 62, 80, .45);
  background: rgba(44, 62, 80, .04);
  transform: translateY(-2px);
}

.btn-dark {
  background: var(--primary-dark);
  color: var(--white);
}

.btn-dark:hover {
  background: #1a252f;
  transform: translateY(-2px);
}

/* --- Announcement Bar --- */
.announcement-bar {
  background: var(--text);
  color: var(--bg);
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
  padding: 8px 1rem;
  line-height: 1.4;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  z-index: 101;
  position: relative;
}

.announcement-bar a {
  color: var(--amber);
  text-decoration: underline;
  font-weight: 700;
  transition: color var(--transition);
}

.announcement-bar a:hover {
  color: var(--white);
}

/* ============================
   HEADER / NAVIGATION
   ============================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(253, 251, 247, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(44, 62, 80, 0.06);
  transition: box-shadow var(--transition);
}

.site-header.scrolled {
  box-shadow: 0 2px 12px rgba(44, 62, 80, .08);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  position: relative;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  transition: color var(--transition);
}

.nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary);
}

.nav-cta {
  margin-left: 0.75rem;
  border-radius: var(--radius);
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  background: var(--primary);
  color: var(--white);
  transition: background var(--transition);
}

.nav-cta:hover {
  background: var(--primary-dark);
}

/* Mobile */
.mobile-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(26, 37, 47, 0.4);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 150;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.mobile-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}

.hamburger {
  display: none;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
  z-index: 210;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: var(--primary-dark);
  border-radius: 2px;
  transition: all var(--transition);
}

.hamburger span+span {
  margin-top: 5px;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-menu {
  display: none;
  position: absolute;
  top: 72px;
  left: 0;
  width: 100%;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  flex-direction: column;
  align-items: center;
  padding: 2rem 0;
  gap: 1.5rem;
  opacity: 0;
  transform: translateY(-20px);
  pointer-events: none;
  transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 10px 30px rgba(44, 62, 80, 0.1);
  z-index: 200;
}

.mobile-menu.open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.mobile-menu a {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text);
}

@media (max-width: 768px) {
  .desktop-nav {
    display: none;
  }

  .hamburger {
    display: block;
  }

  .mobile-menu {
    display: flex;
  }
}

/* Noscript fallback for scroll experience */
.noscript-scroll-fallback {
  position: absolute;
  inset: 0;
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--bg);
  padding: 3rem;
}
.noscript-scroll-fallback h2 { font-size: 2.5rem; margin-bottom: 1rem; color: var(--primary); }
.noscript-scroll-fallback p { font-size: 1.125rem; max-width: 600px; color: var(--text); }

/* ============================
   HERO — Aurora Effect
   ============================ */
@keyframes aurora {
  0% {
    background-position: 50% 50%, 50% 50%;
  }

  100% {
    background-position: 350% 50%, 350% 50%;
  }
}

.hero {
  position: relative;
  display: flex;
  min-height: min(85vh, 800px);
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--bg);
}

.aurora-layer {
  position: absolute;
  inset: -10px;
  opacity: .45;
  filter: blur(14px) invert(1);
  background-image:
    repeating-linear-gradient(100deg, #FDFBF7 0%, #FDFBF7 7%, transparent 10%, transparent 12%, #FDFBF7 16%),
    repeating-linear-gradient(100deg, #a78bfa 5%, #c4b5fd 12%, #f9a8d4 20%, #fbbf8e 26%, #a78bfa 32%);
  background-size: 300%, 200%;
  mask-image: radial-gradient(ellipse 80% 55% at 50% 0%, black 20%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 80% 55% at 50% 0%, black 20%, transparent 75%);
}

.aurora-layer::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(100deg, #FDFBF7 0%, #FDFBF7 7%, transparent 10%, transparent 12%, #FDFBF7 16%),
    repeating-linear-gradient(100deg, #a78bfa 5%, #c4b5fd 12%, #f9a8d4 20%, #fbbf8e 26%, #a78bfa 32%);
  background-size: 200%, 100%;
  background-attachment: fixed;
  mix-blend-mode: difference;
  animation: aurora 60s linear infinite;
}

.hero-vignette {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse 100% 100% at 50% 50%, transparent 40%, #FDFBF7 100%);
}

.hero-fade {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 7rem;
  pointer-events: none;
  background: linear-gradient(to top, var(--bg), transparent);
}

.hero-inner {
  position: relative;
  z-index: 10;
  max-width: 48rem;
  margin: 0 auto;
  padding: 8rem 1rem;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: var(--radius-pill);
  padding: 6px 16px;
  font-size: 14px;
  font-weight: 600;
  background: var(--amber);
  color: var(--amber-dark);
  box-shadow: var(--shadow-card);
  margin-bottom: 2rem;
}

.hero h1 {
  font-size: clamp(2.25rem, 5vw, 3.625rem);
  font-weight: 600;
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

.hero h1 span {
  color: #DEB887;
}

.hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 2.5rem;
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 1.75rem;
}

.hero-trust {
  font-size: 14px;
  color: var(--muted);
}

/* ============================
   FADE-UP ANIMATION
   ============================ */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-up {
  animation: fadeUp .65s ease-out both;
}

.d1 {
  animation-delay: .1s;
}

.d2 {
  animation-delay: .2s;
}

.d3 {
  animation-delay: .3s;
}

.d4 {
  animation-delay: .4s;
}

/* ============================
   SCROLL REVEAL (V3)
   ============================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================
   TREATMENTS / TRUST BAR
   ============================ */
.treatments {
  background: #fffbeb;
  padding: 5rem 1rem;
}

.trust-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem 2.5rem;
  font-size: 1.25rem;
  font-weight: 700;
  font-family: 'Nunito', sans-serif;
  color: var(--primary-dark);
  margin-bottom: 3.5rem;
}

/* ============================
   BENTO GRID — COURSES
   ============================ */
.bento {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: 1fr;
  gap: 1.25rem;
}

@media (max-width: 640px) {
  .bento {
    grid-template-columns: 1fr;
  }
}

.bento-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  padding: 1.5rem;
  min-height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.bento-card .bg-gradient {
  position: absolute;
  inset: 0;
  opacity: .65;
}

.bento-card .card-inner {
  position: relative;
  z-index: 1;
}

.bento-card .icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, .7);
  margin-bottom: 0.75rem;
}

.bento-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.bento-card p {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--muted);
}

.bento-card .card-link {
  position: relative;
  z-index: 1;
  margin-top: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  font-weight: 600;
  transition: gap var(--transition);
}

.bento-card:hover .card-link {
  gap: 8px;
}

/* ============================
   TESTIMONIALS MARQUEE (V3)
   ============================ */
@keyframes marqueeScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.testimonials {
  padding: 6rem 1rem;
  background: var(--secondary);
  overflow: hidden;
}

.marquee-wrapper {
  overflow: hidden;
}

.marquee-track {
  display: flex;
  gap: 24px;
  animation: marqueeScroll 45s linear infinite;
}

.marquee-track:hover {
  animation-play-state: paused;
}

.testimonial-card {
  flex-shrink: 0;
  width: 400px;
  background: var(--white);
  border: 1px solid rgba(194, 122, 98, .15);
  border-radius: var(--radius);
  padding: 3rem;
  box-shadow: var(--shadow-card);
}

@media (max-width: 640px) {
  .testimonial-card {
    width: 85vw;
    padding: 1.5rem;
  }
}

.testimonial-card .stars {
  color: var(--primary);
  font-size: 18px;
  margin-bottom: 0.75rem;
}

.testimonial-card .quote {
  font-size: 1.25rem;
  color: var(--muted);
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.testimonial-card .author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testimonial-card .avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(194, 122, 98, .1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 12px;
  font-weight: 700;
}

.testimonial-card .author-name {
  font-size: 14px;
  font-weight: 600;
}

.testimonial-card .author-role {
  font-size: 12px;
  color: var(--muted);
}

/* ============================
   PRICING
   ============================ */
.pricing {
  padding: 6rem 1rem;
  background: var(--bg);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  align-items: stretch;
}

@media (max-width: 768px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }
}

.plan-card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 1.5rem;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  cursor: pointer;
  transition: all var(--transition);
}

.plan-card:hover {
  box-shadow: var(--shadow-hover);
}

.plan-card.sel {
  border-color: var(--primary);
  box-shadow: 0 0 0 2px var(--primary);
  background: rgba(194, 122, 98, .06);
}

.plan-card .badge {
  align-self: flex-start;
  border-radius: var(--radius-pill);
  padding: 4px 12px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  background: var(--primary);
  color: var(--white);
  margin-bottom: 1rem;
}

.plan-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
}

.plan-card .desc {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--muted);
  margin-top: 0.5rem;
}

.plan-card .price {
  font-size: 2.5rem;
  font-weight: 800;
  margin: 1.5rem 0;
}

.plan-card .features {
  flex-grow: 1;
  margin-bottom: 2rem;
}

.plan-card .features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 14px;
  margin-bottom: 0.75rem;
}

.plan-card .features .check {
  color: var(--primary);
  flex-shrink: 0;
}

.plan-btn {
  width: 100%;
  margin-top: auto;
  border-radius: 8px;
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
}

.plan-btn-default {
  background: var(--secondary);
  color: var(--text);
}

.plan-btn-active {
  background: var(--primary);
  color: var(--white);
}

.plan-btn:hover {
  transform: translateY(-1px);
}

/* ============================
   LOCATION / MAP
   ============================ */
.location {
  padding: 6rem 1rem;
  background: var(--secondary);
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

@media (max-width: 768px) {
  .location-grid {
    grid-template-columns: 1fr;
  }
}

.location-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem;
  border-left: 4px solid var(--primary);
}

.location-card h4 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.location-card p {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 4px;
}

.location-card a {
  font-size: 14px;
  color: var(--primary);
}

.location-card a:hover {
  text-decoration: underline;
}

/* ============================
   FAQ ACCORDION (V3 style)
   ============================ */
.faq {
  padding: 6rem 1rem;
  background: var(--bg);
}

.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  margin-bottom: 0.75rem;
}

.faq-btn {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 1.5rem;
  text-align: left;
  font-size: 1.125rem;
  font-weight: 700;
  font-family: 'Nunito', sans-serif;
  color: var(--primary-dark);
  background: transparent;
  border: none;
  cursor: pointer;
  transition: background var(--transition);
}

.faq-btn:hover {
  background: rgba(194, 122, 98, .08);
}

.faq-chevron {
  transition: transform 0.3s ease;
  flex-shrink: 0;
  color: var(--primary);
}

.faq-item.open .faq-chevron {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-item.open .faq-answer {
  max-height: 600px;
}

.faq-answer-inner {
  padding: 0 1.5rem 1.25rem;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--muted);
}

/* ============================
   CONTACT FORM
   ============================ */
.contact {
  padding: 6rem 1rem;
  background: var(--secondary);
}

.contact-form {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem 2.5rem;
  box-shadow: var(--shadow-card);
  max-width: 640px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg);
  font-size: 14px;
  font-family: var(--font-body);
  color: var(--text);
  transition: all var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(194, 122, 98, .15);
}

.form-error {
  color: #ef4444;
  font-size: 1rem;
  margin-top: 4px;
  display: none;
}

.form-error.show {
  display: block;
}

.form-submit {
  width: 100%;
  padding: 16px;
  background: var(--primary-dark);
  color: var(--white);
  font-size: 1.15rem;
  font-weight: 600;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background var(--transition);
  letter-spacing: 0.5px;
}

.form-submit:hover {
  background: #1a252f;
}

/* ============================
   RESPONSIVE SPLIT LAYOUT
   ============================ */
.responsive-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

@media (max-width: 768px) {
  .responsive-split {
    grid-template-columns: 1fr;
  }
}

/* ============================
   FOOTER
   ============================ */
.site-footer {
  background: #fde39b;
  color: var(--text);
  padding: 4rem 1rem 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto 3rem;
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

.footer-logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--text);
  margin-bottom: 0.75rem;
}

.footer-logo span {
  color: var(--primary);
  font-weight: 700;
}

.footer-tagline {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 1.25rem;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(44, 62, 80, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}

.social-link:hover {
  background: var(--primary);
}

.social-link svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  color: var(--text);
}

.social-link:hover svg {
  color: var(--white);
}

.footer-heading {
  font-size: 1.25rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text);
  margin-bottom: 1rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-links span {
  font-size: 1rem;
  color: var(--text);
}

.footer-links a {
  font-size: 1rem;
  color: var(--text);
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--primary);
}

.footer-links svg {
  stroke: var(--text) !important;
}

.footer-bottom {
  border-top: 1px solid rgba(44, 62, 80, .15);
  padding-top: 1.5rem;
  text-align: center;
  font-size: 13px;
  color: var(--muted);
  max-width: 1200px;
  margin: 0 auto;
}

/* ============================
   SECTION UTILITIES
   ============================ */
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.section-header p {
  font-size: 1.125rem;
  color: var(--muted);
  max-width: 36rem;
  margin: 0 auto;
}

/* ============================
   SUBPAGE HERO
   ============================ */
.page-hero {
  padding: 5rem 1rem;
  background: var(--secondary);
  text-align: center;
}

.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1rem;
}

.page-hero p {
  font-size: 1.125rem;
  color: var(--muted);
  max-width: 36rem;
  margin: 0 auto;
  line-height: 1.7;
}

/* ============================
   ARTICLE / BLOG CARDS
   ============================ */
.article-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

@media (max-width: 1023px) {
  .article-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .article-grid {
    grid-template-columns: 1fr;
  }
}

.article-card {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--white);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: box-shadow var(--transition);
}

.article-card:hover {
  box-shadow: var(--shadow-hover);
}

.article-card .thumb {
  aspect-ratio: 16/9;
  overflow: hidden;
}

.article-card .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.article-card:hover .thumb img {
  transform: scale(1.05);
}

.article-card .card-body {
  padding: 1.25rem;
}

.article-card .tag {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.5rem;
}

.article-card h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  line-height: 1.4;
}

.article-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 0.75rem;
}

.article-card .read-more {
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
}

/* ============================
   CURRICULUM CARDS
   ============================ */
.curriculum-card {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--white);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.curriculum-card .accent-bar {
  height: 4px;
}

.curriculum-card .card-body {
  padding: 2rem 2.5rem;
}

@media (max-width: 640px) {
  .curriculum-card .card-body {
    padding: 1.5rem 1.25rem;
  }
}

.curriculum-card .card-header {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-bottom: 1.5rem;
}

.curriculum-card .age-tag {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--muted);
}

.curriculum-card h2 {
  font-size: clamp(1.5rem, 3vw, 1.875rem);
}

.curriculum-card .meta {
  display: flex;
  gap: 1rem;
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 0.75rem;
}

.curriculum-card .overview {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.module-grid {
  display: grid;
  grid-template-columns: 1fr !important;
  gap: 0.5rem;
  margin-bottom: 2rem;
  list-style: none;
  padding: 0;
}

.module-grid li {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: 14px;
}

.module-grid .check {
  flex-shrink: 0;
  margin-top: 2px;
}

/* ============================
   ABOUT PAGE — VALUES GRID
   ============================ */
.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

@media (max-width: 640px) {
  .values-grid {
    grid-template-columns: 1fr;
  }
}

.value-card {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--white);
  padding: 1.75rem;
}

.value-card .icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.value-card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.value-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.75;
}

/* ============================
   STATS ROW
   ============================ */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  padding: 4rem 1rem;
  text-align: center;
}

@media (max-width: 640px) {
  .stats-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

.stat-num {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 4px;
}

.stat-label {
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
}

/* ============================
   CONTACT PAGE — INFO CARDS
   ============================ */
.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

@media (max-width: 640px) {
  .contact-cards {
    grid-template-columns: 1fr;
  }
}

.contact-info-card {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--white);
  padding: 1.5rem;
  text-align: center;
}

.contact-info-card .icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.contact-info-card h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 2px;
}

.contact-info-card p {
  font-size: 14px;
  color: var(--muted);
}

/* ============================
   HERO — SPLIT LAYOUT (V1)
   ============================ */
.hero-split {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  min-height: min(75vh, 680px);
  padding: 5rem 1rem 3rem;
  overflow: hidden;
  max-width: 1200px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .hero {
    min-height: auto;
  }
  .hero-split {
    grid-template-columns: 1fr;
    padding: 3rem 1rem 2rem;
    min-height: auto;
    text-align: center;
  }
}

.hero-content .hero-kicker {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 1rem;
  background: rgba(194, 122, 98, .1);
  padding: 6px 16px;
  border-radius: var(--radius-pill);
}

.hero-content h1 {
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

.hero-content .hero-subtitle {
  font-size: 1.125rem;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.hero-content .hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: flex-start;
}

@media (max-width: 768px) {
  .hero-content .hero-ctas {
    justify-content: center;
  }
}

.hero-image-wrapper {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 24px 48px rgba(44, 62, 80, .12);
  position: relative;
}

.hero-image-wrapper img {
  width: 100%;
  display: block;
}

.hero-image-wrapper::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(194, 122, 98, .08), transparent 60%);
  z-index: 1;
  pointer-events: none;
}

/* ============================
   CAROUSEL — V2 Treatments
   ============================ */
.carousel-section {
  background: #eef2e6;
  padding: 5rem 1rem;
}
.carousel-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .carousel-columns {
    grid-template-columns: 1fr;
  }
}

.carousel-col h3 {
  text-align: center;
  font-size: 1.25rem;
  font-weight: 600;
  color: #1c1917;
  margin-bottom: 0.25rem;
}

.carousel-col .underline {
  width: 40px;
  height: 2px;
  background: #f59e0b;
  border-radius: 2px;
  margin: 0 auto 1rem;
}

.carousel-viewport {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-hover);
  aspect-ratio: 4/3;
}

.carousel-viewport img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.carousel-viewport .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, .7) 0%, rgba(0, 0, 0, .2) 50%, transparent 100%);
}

.carousel-viewport .slide-title {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  color: white;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  text-align: center;
  text-shadow: 0 2px 8px rgba(0, 0, 0, .3);
}

.carousel-desc {
  font-size: 1.1rem;
  font-weight: 500;
  color: #57534e;
  text-align: center;
  line-height: 1.6;
  margin-top: 0.75rem;
  min-height: 2.75rem;
}

/* Wellbeing trust block */
.wellbeing-block {
  background: var(--white);
  border: 1px solid #fef3c7;
  border-radius: 16px;
  box-shadow: var(--shadow-card);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
  max-width: 640px;
  margin: 3.5rem auto 0;
}

.wellbeing-block h3 {
  font-size: clamp(1.5rem, 3vw, 1.875rem);
  color: #1c1917;
}

.wellbeing-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.wellbeing-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 17px;`r`n  font-weight: 600;
  color: #57534e;
}

.wellbeing-check {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #1a2238;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ============================
   EVIDENCE-BASED SECTION
   ============================ */
.evidence-section {
  padding: 6rem 1rem;
  background: var(--bg);
}

.evidence-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  align-items: stretch;
  max-width: 1200px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .evidence-grid {
    grid-template-columns: 1fr;
  }
}

.evidence-img-wrapper {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-hover);
  position: relative;
}

.evidence-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.evidence-content h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 1.25rem;
}

.evidence-content p {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--muted);
  margin-bottom: 1rem;
}

.evidence-cta {
  background: var(--secondary);
  border-radius: var(--radius);
  padding: 3rem;
  text-align: center;
  margin-top: 2rem;
}

.evidence-cta p {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 1rem;
}

/* ============================
   TRAINERS GRID (About page)
   ============================ */
.trainers-section {
  padding: 6rem 1rem;
  background: var(--bg);
}

.trainers-intro {
  max-width: 48rem;
  margin: 0 auto 3rem;
  text-align: center;
}

.trainers-intro p {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.8;
}

.trainers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  max-width: 72rem;
  margin: 0 auto;
}

@media (max-width: 1023px) {
  .trainers-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 640px) {
  .trainers-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.trainer-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
  transition: box-shadow var(--transition), transform var(--transition);
}

.trainer-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}

.trainer-card .trainer-img {
  aspect-ratio: 1;
  overflow: hidden;
}

.trainer-card .trainer-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.trainer-card:hover .trainer-img img {
  transform: scale(1.05);
}

.trainer-card .trainer-name {
  padding: 0.75rem 1rem;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
}

/* ============================
   ENTERPRISE POLISH
   ============================ */
/* Gradient dividers */
.gradient-divider {
  height: 1px;
  border: none;
  background: linear-gradient(to right, transparent, var(--primary), transparent);
  max-width: 400px;
  margin: 0 auto;
}

/* Animated counter */
@keyframes countUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.count-animate {
  animation: countUp 0.6s ease-out both;
}

/* Logo strip animation */
@keyframes logoSlide {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* Floating badge */
.floating-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  border-radius: var(--radius-pill);
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: 0 4px 16px rgba(44, 62, 80, .06);
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
}

.floating-badge .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #10b981;
  animation: pulse-dot 2s ease infinite;
}

@keyframes pulse-dot {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: .4;
  }
}

/* Hidden utility */
.hidden {
  display: none !important;
}

/* --- Bottom Trust Bar --- */
.bottom-trust-bar {
  background: var(--white);
  padding: 4rem 1rem;
}

.trust-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
}

.trust-icon-box {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  transition: transform var(--transition);
}

.trust-item:hover .trust-icon-box {
  transform: scale(1.1);
}

.trust-item h4 {
  font-family: var(--font-body);
  font-size: 0.875rem; /* 14px */
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text);
}

.trust-item p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}

@media (max-width: 1024px) {
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (max-width: 640px) {
  .trust-grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }
  .bottom-trust-bar {
    padding: 3rem 1rem;
  }
}


/* -- Responsive Grid Utilities -- */
.responsive-split {
  max-width: 72rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.course-options-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .75rem;
}

@media (max-width: 768px) {
  .responsive-split {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: center;
  }
  .responsive-split img {
    max-width: 100%;
    margin: 0 auto;
  }
  .form-row {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

@media (max-width: 640px) {
  .course-options-grid {
    grid-template-columns: 1fr;
  }
}
