/* ==================================================
   PureBalance — Holistic Wellness & Health Coaching
   Inspired by karishmashahnutrition.com
   ================================================== */

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

:root {
  --green-900: #1f3d2c;
  --green-800: #2d5f3f;
  --green-700: #3a6b4c;
  --green-600: #4d8460;
  --green-500: #6a9c7a;
  --green-200: #d6e5da;
  --green-100: #ecf3ee;
  --gold: #c9a961;
  --gold-dark: #a98a45;
  --cream: #faf7f2;
  --cream-2: #f4ede0;
  --ink: #1f1f1f;
  --ink-2: #4a4a4a;
  --ink-3: #7a7a7a;
  --line: #e8e2d5;
  --white: #ffffff;
  --shadow-sm: 0 4px 12px rgba(31, 61, 44, 0.06);
  --shadow-md: 0 10px 30px rgba(31, 61, 44, 0.08);
  --shadow-lg: 0 20px 50px rgba(31, 61, 44, 0.12);
  --radius: 14px;
  --radius-lg: 22px;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-script: 'Caveat', cursive;
  --max-w: 1200px;
}

html, body { 
  overflow-x: hidden; 
  width: 100%; 
  max-width: 100vw;
}

html { scroll-behavior: smooth; scroll-padding-top: 90px; }

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; transition: color 0.2s ease; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; }
ul { list-style: none; }

.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
  position: relative;
}

.section-eyebrow {
  display: inline-block;
  color: var(--green-700);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 600;
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 18px;
}

.section-title em {
  font-style: italic;
  color: var(--green-700);
}

.section-lead {
  max-width: 680px;
  font-size: 17px;
  color: var(--ink-2);
  margin-bottom: 50px;
}

.section-head {
  text-align: center;
  margin: 0 auto 60px;
  max-width: 760px;
}

.section-head .section-lead { margin-left: auto; margin-right: auto; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--green-700);
  background: var(--green-100);
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
}
.eyebrow i { color: var(--green-700); }
.eyebrow--light { background: rgba(255, 255, 255, 0.15); color: #fff; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 100px;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.02em;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  white-space: nowrap;
  cursor: pointer;
}
.btn--primary {
  background: var(--green-800);
  color: var(--white);
  box-shadow: 0 8px 20px rgba(45, 95, 63, 0.25);
}
.btn--primary:hover {
  background: var(--green-900);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(45, 95, 63, 0.35);
}
.btn--ghost {
  background: transparent;
  color: var(--green-800);
  border-color: var(--green-800);
}
.btn--ghost:hover { background: var(--green-800); color: var(--white); }
.btn--outline {
  background: transparent;
  color: var(--green-800);
  border-color: var(--green-200);
}
.btn--outline:hover { background: var(--green-800); color: var(--white); border-color: var(--green-800); }
.btn--white { background: var(--white); color: var(--green-800); }
.btn--white:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn--ghost-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.5);
}
.btn--ghost-light:hover { background: var(--white); color: var(--green-800); }
.btn--block { width: 100%; }

/* ---------- Top Strip ---------- */
.top-strip {
  background: var(--green-900);
  color: var(--green-200);
  font-size: 13px;
  padding: 10px 0;
}
.top-strip__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.top-strip span { display: inline-flex; align-items: center; gap: 6px; }
.top-strip i { color: var(--gold); }
.strip-cta {
  background: var(--gold);
  color: var(--green-900);
  padding: 6px 16px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: background 0.2s ease;
}
.strip-cta:hover { background: var(--gold-dark); color: var(--white); }

/* ---------- Header ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(250, 247, 242, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  transition: all 0.3s ease;
}

/* ---------- Nav backdrop (mobile overlay) ---------- */
.nav-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(31, 61, 44, 0.55);
  z-index: 150;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}

.nav-backdrop.show {
  opacity: 1;
  pointer-events: auto;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 24px;
  gap: 30px;
  min-height: 76px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

/* Logo image — the PureBalance brand mark */
.brand__logo {
  width: 48px;
  height: 64px;
  object-fit: cover;
  object-position: center;
  border-radius: 8px;
  background: var(--white);
  padding: 2px;
  box-shadow: var(--shadow-sm);
}

.brand__text { display: flex; flex-direction: column; line-height: 1.1; }
.brand__name {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 700;
  color: var(--green-900);
  letter-spacing: 0.01em;
}
.brand__tagline {
  font-size: 10.5px;
  color: var(--ink-3);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  margin-top: 2px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 26px;
}
.nav a {
  color: var(--ink);
  font-weight: 500;
  font-size: 15px;
  position: relative;
  padding: 4px 0;
}
.nav a:not(.nav__cta)::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--green-700);
  transition: width 0.3s ease;
}
.nav a:not(.nav__cta):hover::after { width: 100%; }
.nav a:not(.nav__cta):hover { color: var(--green-800); }
.nav__cta {
  background: var(--green-800);
  color: var(--white) !important;
  padding: 10px 22px !important;
  border-radius: 100px;
  font-size: 14px;
  transition: all 0.3s ease;
}
.nav__cta:hover { background: var(--green-900); transform: translateY(-1px); }
.nav__cta::after { display: none !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 30px;
  height: 30px;
  justify-content: center;
  align-items: center;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  transition: all 0.3s ease;
  border-radius: 2px;
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: linear-gradient(180deg, var(--cream) 0%, var(--white) 100%);
  padding: 70px 0 0;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(106, 156, 122, 0.18), transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
  padding-bottom: 80px;
}
.hero__content { max-width: 600px; }

.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 5vw, 3.9rem);
  font-weight: 600;
  line-height: 1.08;
  color: var(--ink);
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}
.hero__title--accent {
  color: var(--green-800);
  font-style: italic;
  position: relative;
  display: inline-block;
}
.hero__title--accent::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0;
  width: 100%;
  height: 8px;
  background: rgba(201, 169, 97, 0.35);
  z-index: -1;
  border-radius: 4px;
}

.hero__lead {
  font-size: 18px;
  color: var(--ink-2);
  margin-bottom: 36px;
  max-width: 540px;
  line-height: 1.7;
}
.hero__cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 50px; }
.hero__stats {
  display: flex;
  gap: 40px;
  border-top: 1px solid var(--line);
  padding-top: 30px;
  flex-wrap: wrap;
}
.stat { display: flex; flex-direction: column; gap: 4px; }
.stat__num {
  font-family: var(--font-serif);
  font-size: 36px;
  font-weight: 700;
  color: var(--green-800);
  line-height: 1;
}
.stat__label {
  font-size: 12px;
  color: var(--ink-3);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
}

/* Hero visual — clean framed portrait, no exaggerated shapes */
.hero__visual {
  position: relative;
  max-width: 420px;
  margin-left: auto;
  width: 100%;
}
.hero__visual-frame {
  position: relative;
  aspect-ratio: 3/4;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: var(--green-100);
}
.hero__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* Hero pillars band */
.hero__pillars {
  background: var(--green-800);
  color: var(--white);
  padding: 50px 0;
  position: relative;
  z-index: 1;
}
.hero__pillars-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.pillar { text-align: center; padding: 0 10px; position: relative; }
.pillar:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -15px;
  width: 1px;
  height: 50px;
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-50%);
}
.pillar i { color: var(--gold); font-size: 26px; margin-bottom: 14px; display: block; }
.pillar h4 {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--white);
}
.pillar p { font-size: 14px; color: var(--green-200); line-height: 1.5; }

/* ---------- Brand Showcase (logo image) ---------- */
.brand-showcase {
  background: var(--white);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.brand-showcase__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.brand-showcase__media {
  position: relative;
  max-width: 420px;
  margin: 0 auto;
  width: 100%;
}
.brand-showcase__img {
  width: 100%;
  height: auto;
  aspect-ratio: 2/3;
  object-fit: contain;
  border-radius: var(--radius-lg);
  filter: drop-shadow(0 20px 40px rgba(31, 61, 44, 0.15));
}
.brand-showcase__content h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 18px;
}
.brand-showcase__content h2 em { font-style: italic; color: var(--green-700); }
.brand-showcase__content p {
  color: var(--ink-2);
  font-size: 16px;
  margin-bottom: 16px;
}
.brand-showcase__values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 30px;
}
.brand-showcase__value {
  background: var(--cream);
  border: 1px solid var(--line);
  padding: 18px;
  border-radius: var(--radius);
  text-align: center;
  transition: all 0.3s ease;
}
.brand-showcase__value:hover { transform: translateY(-3px); border-color: var(--green-200); }
.brand-showcase__value i {
  color: var(--green-700);
  font-size: 20px;
  margin-bottom: 8px;
  display: block;
}
.brand-showcase__value h4 {
  font-family: var(--font-serif);
  font-size: 17px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 2px;
}
.brand-showcase__value span { font-size: 12px; color: var(--ink-3); text-transform: uppercase; letter-spacing: 0.08em; }

/* ---------- About ---------- */
.about { background: var(--cream); }
.about__inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 70px;
  align-items: center;
}
.about__media {

  display: flex;

  flex-direction: column;

  align-items: stretch;      /* ← forces both kids to same width */

  width: 100%;

  max-width: 480px;

  margin: 0 auto;

}


.about__img {

  display: block;

  width: 100%;

  max-width: 100%;           /* ← can't escape the column */

  aspect-ratio: 2/3;

  object-fit: cover;

  border-radius: 24px 24px 0 0;  /* top corners only */

  box-shadow: var(--shadow-md);

}

.about__img--main { aspect-ratio: 2/3; }
.about__img--sub { aspect-ratio: 2/3; margin-top: 40px; }

.about__quote-card {

  display: block;

  width: 100%;

  max-width: 100%;

  box-sizing: border-box;

  background-color: #2d5f3f;

  background-image: linear-gradient(135deg, #2d5f3f 0%, #3a6b4c 100%);

  color: #ffffff;

  padding: 36px 36px;

  border-radius: 0 0 24px 24px;

  box-shadow: 0 10px 30px rgba(31, 61, 44, 0.12);

  margin-top: -2px;

}
.about__quote-card i { color: #c9a961; font-size: 22px; margin-bottom: 12px; display: block; }

.about__quote-card p { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 22px; font-style: italic; line-height: 1.3; margin-bottom: 12px; color: #ffffff; }

.about__quote-card span { font-size: 12px; color: #d6e5da; letter-spacing: 0.05em; }

.about__content p { color: var(--ink-2); margin-bottom: 18px; font-size: 16px; }
.about__content strong { color: var(--green-800); font-weight: 600; }
.about__content em { color: var(--green-700); font-style: italic; }

.about__list { margin: 30px 0; display: grid; gap: 12px; }
.about__list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--ink-2);
  font-size: 15px;
}
.about__list i {
  color: var(--green-700);
  background: var(--green-100);
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  flex-shrink: 0;
  margin-top: 3px;
}

.about__creds {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 36px;
  padding-top: 36px;
  border-top: 1px solid var(--line);
}
.cred { display: flex; align-items: center; gap: 12px; }
.cred i {
  width: 44px;
  height: 44px;
  background: var(--green-100);
  color: var(--green-800);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.cred span { font-size: 13px; color: var(--ink-2); line-height: 1.3; }

/* ---------- Approach ---------- */
.approach { background: var(--cream); }
.approach__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.approach-card {
  background: var(--white);
  padding: 36px 28px;
  border-radius: var(--radius-lg);
  text-align: center;
  border: 1px solid transparent;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.approach-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--green-600), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.approach-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--green-200); }
.approach-card:hover::before { transform: scaleX(1); }
.approach-card__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  background: var(--green-100);
  color: var(--green-800);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  transition: all 0.3s ease;
}
.approach-card:hover .approach-card__icon {
  background: var(--green-800);
  color: var(--gold);
  transform: rotate(360deg);
}
.approach-card h3 {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--ink);
}
.approach-card p { color: var(--ink-2); font-size: 15px; }

/* ---------- Programs ---------- */
.programs { background: var(--white); }
.programs__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 100px;
}
.program-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}
.program-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--green-200);
}

.program-card__media {
  position: relative;
  background: var(--green-100);
  overflow: hidden;
}
.program-card__media--portrait { aspect-ratio: 2/3; }
.program-card__media--square  { aspect-ratio: 1/1; }
.program-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}
.program-card:hover .program-card__media img { transform: scale(1.04); }

.program-card__tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--green-800);
  color: var(--white);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  z-index: 1;
}

.program-card__body { padding: 28px; flex: 1; display: flex; flex-direction: column; }
.program-card__body h3 {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 12px;
  line-height: 1.2;
}
.program-card__body > p { color: var(--ink-2); font-size: 15px; margin-bottom: 20px; }
.program-card__body ul { margin-bottom: 24px; display: grid; gap: 10px; flex: 1; }
.program-card__body li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--ink-2);
  font-size: 14px;
}
.program-card__body li i { color: var(--green-700); font-size: 12px; margin-top: 4px; flex-shrink: 0; }

.program-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--green-800);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-top: auto;
  transition: gap 0.3s ease;
}
.program-card__link:hover { gap: 14px; color: var(--green-900); }

/* ---------- Pricing ---------- */
.pricing { padding-top: 60px; border-top: 1px solid var(--line); }
.pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 30px;
}
.price-card {
  background: var(--cream);
  padding: 40px 32px;
  border-radius: var(--radius-lg);
  border: 2px solid var(--line);
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
}
.price-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.price-card--featured {
  background: var(--green-800);
  color: var(--white);
  border-color: var(--green-800);
  box-shadow: var(--shadow-md);
}
.price-card__ribbon {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--green-900);
  padding: 6px 18px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.price-card h3 {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 4px;
}
.price-card--featured h3 { color: var(--white); }
.price-card__sub { font-size: 14px; color: var(--ink-3); margin-bottom: 18px; }
.price-card--featured .price-card__sub { color: var(--green-200); }
.price-card__price {
  font-family: var(--font-serif);
  font-size: 48px;
  font-weight: 700;
  color: var(--green-800);
  margin-bottom: 24px;
  line-height: 1;
}
.price-card--featured .price-card__price { color: var(--gold); }
.price-card ul { text-align: left; margin: 24px 0; display: grid; gap: 10px; }
.price-card li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
}
.price-card li i {
  color: var(--green-700);
  background: var(--green-100);
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  flex-shrink: 0;
  margin-top: 4px;
}
.price-card--featured li { color: var(--green-200); }
.price-card--featured li i { background: rgba(255, 255, 255, 0.2); color: var(--gold); }
.price-card__best {
  font-style: italic;
  font-size: 13px;
  color: var(--ink-3);
  margin: 16px 0 24px;
}
.price-card--featured .price-card__best { color: var(--green-200); }
.pricing__note {
  text-align: center;
  font-size: 14px;
  color: var(--ink-3);
  font-style: italic;
}

/* ---------- Why ---------- */
.why { background: var(--cream); }
.why__head { text-align: center; margin-bottom: 60px; }
.why__head .section-lead { margin: 0 auto; }
.why__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.why-card {
  background: var(--white);
  padding: 36px 28px;
  border-radius: var(--radius);
  text-align: center;
  border: 1px solid transparent;
  transition: all 0.3s ease;
}
.why-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--green-200); }
.why-card i { color: var(--green-700); font-size: 32px; margin-bottom: 16px; display: block; }
.why-card h4 {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 8px;
}
.why-card p { font-size: 14px; color: var(--ink-2); }

/* ---------- Steps ---------- */
.steps { background: var(--white); }
.steps__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  position: relative;
}
.step {
  text-align: center;
  padding: 40px 30px;
  position: relative;
  background: var(--cream);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
}
.step__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--green-800);
  color: var(--gold);
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
  box-shadow: 0 8px 20px rgba(45, 95, 63, 0.25);
}
.step h4 {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 8px;
}
.step p { color: var(--ink-2); font-size: 15px; }

/* ---------- Testimonials ---------- */
.testimonials { background: var(--cream); }
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.testimonial {
  background: var(--white);
  padding: 36px 32px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  position: relative;
  transition: all 0.3s ease;
}
.testimonial::before {
  content: '"';
  position: absolute;
  top: 16px;
  right: 28px;
  font-family: var(--font-serif);
  font-size: 80px;
  color: var(--green-100);
  line-height: 1;
}
.testimonial:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--green-200); }
.testimonial__stars { color: var(--gold); margin-bottom: 16px; display: flex; gap: 3px; }
.testimonial > p {
  font-size: 15px;
  color: var(--ink-2);
  line-height: 1.7;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}
.testimonial__person {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--line);
  padding-top: 20px;
}
.testimonial__avatar {
  width: 44px;
  height: 44px;
  background: var(--green-100);
  color: var(--green-800);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 600;
}
.testimonial__person strong { display: block; color: var(--ink); font-size: 15px; }
.testimonial__person span { font-size: 12px; color: var(--ink-3); }

/* ---------- CTA ---------- */
.cta {
  position: relative;
  background: linear-gradient(135deg, var(--green-900) 0%, var(--green-700) 100%);
  padding: 90px 0;
  overflow: hidden;
}
.cta::before {
  content: '';
  position: absolute;
  top: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(201, 169, 97, 0.2), transparent 70%);
  border-radius: 50%;
}
.cta::after {
  content: '';
  position: absolute;
  bottom: -150px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(201, 169, 97, 0.15), transparent 70%);
  border-radius: 50%;
}
.cta__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.cta__content { color: var(--white); }
.cta__content .eyebrow { color: var(--gold); }
.cta__content h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 18px;
}
.cta__content h2 em { font-style: italic; color: var(--gold); }
.cta__content > p {
  font-size: 17px;
  color: var(--green-200);
  margin-bottom: 32px;
  max-width: 540px;
}
.cta__buttons { display: flex; gap: 14px; flex-wrap: wrap; }
.cta__visual {
  position: relative;
  aspect-ratio: 1/1;
  max-width: 320px;
  margin-left: auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cta__visual-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* ---------- Contact ---------- */
.contact { background: var(--white); }
.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.contact__info p { color: var(--ink-2); font-size: 16px; margin-bottom: 36px; }
.contact__list { display: grid; gap: 22px; margin-bottom: 36px; }
.contact__list li { display: flex; align-items: flex-start; gap: 16px; }
.contact__list i {
  width: 46px;
  height: 46px;
  background: var(--green-100);
  color: var(--green-800);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.contact__list strong {
  display: block;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-3);
  margin-bottom: 4px;
  font-weight: 600;
}
.contact__list a, .contact__list span { color: var(--ink); font-size: 16px; }
.contact__list a:hover { color: var(--green-800); }
.contact__socials { display: flex; gap: 12px; padding-top: 24px; border-top: 1px solid var(--line); }
.contact__socials a {
  width: 42px;
  height: 42px;
  background: var(--cream);
  color: var(--green-800);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: all 0.3s ease;
}
.contact__socials a:hover { background: var(--green-800); color: var(--white); transform: translateY(-3px); }

.contact__form {
  background: var(--cream);
  padding: 40px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
}
.contact__form h3 {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 26px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-2);
  margin-bottom: 8px;
  letter-spacing: 0.04em;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 10px;
  font-family: inherit;
  font-size: 15px;
  background: var(--white);
  color: var(--ink);
  transition: all 0.2s ease;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--green-700);
  box-shadow: 0 0 0 3px rgba(45, 95, 63, 0.1);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-note {
  font-size: 12px;
  color: var(--ink-3);
  text-align: center;
  margin-top: 12px;
  font-style: italic;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--green-900);
  color: var(--green-200);
  padding: 70px 0 0;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 50px;
}
.footer__brand-logo {
  width: 72px;
  height: 96px;
  object-fit: cover;
  border-radius: 10px;
  background: var(--white);
  padding: 4px;
  margin-bottom: 18px;
}
.footer__brand p { font-size: 14px; line-height: 1.7; margin-bottom: 20px; color: var(--green-200); }
.footer__socials { display: flex; gap: 10px; }
.footer__socials a {
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--green-200);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: all 0.3s ease;
}
.footer__socials a:hover { background: var(--gold); color: var(--green-900); transform: translateY(-2px); }

.footer__col h5 {
  color: var(--white);
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
}
.footer__col a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--green-200);
  font-size: 14px;
  margin-bottom: 12px;
  transition: color 0.2s ease;
}
.footer__col a:hover { color: var(--gold); }
.footer__col a i { color: var(--gold); width: 16px; }

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 0;
  font-size: 13px;
  color: var(--green-200);
}
.footer__bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer__bottom span:last-child {
  font-family: var(--font-script);
  color: var(--gold);
  font-size: 18px;
}

/* ---------- Floating WhatsApp ---------- */
.float-wa {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  background: #25d366;
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
  z-index: 99;
  transition: all 0.3s ease;
}
.float-wa:hover { transform: scale(1.1); box-shadow: 0 14px 36px rgba(37, 211, 102, 0.55); color: var(--white); }
.float-wa::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid #25d366;
  animation: pulse 2s ease-out infinite;
}
@keyframes pulse {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(1.5); opacity: 0; }
}

/* ---------- Toast ---------- */
.toast {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--green-800);
  color: var(--white);
  padding: 16px 28px;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 500;
  box-shadow: var(--shadow-lg);
  z-index: 999;
  opacity: 0;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 10px;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }
.toast i { color: var(--gold); }

/* ---------- Reveal Animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ==================================================
   RESPONSIVE — large → tiny
   ================================================== */

/* ----- Ultra-wide / 4K (≥1600px) ----- */
@media (min-width: 1600px) {
  :root { --max-w: 1320px; }
  body { font-size: 17px; }
  .section { padding: 120px 0; }
  .hero__inner { gap: 80px; }
  .hero__title { font-size: 4.4rem; }
  .hero__visual { max-width: 480px; }
  .stat__num { font-size: 42px; }
}

/* ----- Standard desktop (≤1280px) ----- */
@media (max-width: 1280px) {
  .nav { gap: 20px; }
  .nav a { font-size: 14px; }
  .hero__inner { gap: 50px; }
  .about__inner { gap: 50px; }
  .footer__grid { gap: 30px; }
}

/* ----- Tablet landscape & small desktop (≤1024px) ----- */
@media (max-width: 1024px) {
  .section { padding: 80px 0; }
  .nav { gap: 18px; }
  .nav a { font-size: 14px; }

  .hero__inner { grid-template-columns: 1fr; gap: 50px; }
  .hero__visual { max-width: 360px; margin: 0 auto; }
  .hero__content { max-width: 100%; text-align: center; margin: 0 auto; }
  .hero__lead { margin-left: auto; margin-right: auto; }
  .hero__cta { justify-content: center; }
  .hero__stats { justify-content: center; }
  .hero__pillars-inner { grid-template-columns: repeat(2, 1fr); gap: 30px 20px; }
  .pillar:not(:last-child)::after { display: none; }

  .brand-showcase__inner { grid-template-columns: 1fr; gap: 40px; }
  .brand-showcase__media { max-width: 320px; }
  .brand-showcase__content { text-align: center; }
  .brand-showcase__content > p { max-width: 600px; margin-left: auto; margin-right: auto; }

  .about__inner { grid-template-columns: 1fr; gap: 50px; }
  .about__media { max-width: 460px; }

  .approach__grid { grid-template-columns: repeat(2, 1fr); }
  .programs__grid { grid-template-columns: repeat(2, 1fr); }
  .pricing__grid { grid-template-columns: 1fr; max-width: 460px; margin-left: auto; margin-right: auto; }
  .price-card--featured { transform: none; }
  .price-card--featured:hover { transform: translateY(-4px); }
  .why__grid { grid-template-columns: repeat(2, 1fr); }
  .steps__grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .testimonials__grid { grid-template-columns: 1fr; max-width: 540px; margin: 0 auto; }
  .cta__inner { grid-template-columns: 1fr; }
  .cta__visual { display: none; }
  .contact__inner { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

/* ----- Tablet portrait (≤768px) ----- */
@media (max-width: 768px) {
  .section { padding: 60px 0; }
  .container { padding: 0 18px; }
  .section-head { margin-bottom: 40px; }
  .section-lead { margin-bottom: 36px; }

  .top-strip__inner { font-size: 12px; gap: 10px; }
  .hide-mobile { display: none; }

  .header__inner { padding: 10px 18px; min-height: 64px; }
    .nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    max-width: 100%;
    height: 100vh;
    height: 100dvh;
    background: var(--white);
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;   /* ← packed from top, not stretched */
    padding: 90px 24px 30px;        /* ← less padding = more room for items */
    gap: 0;                          /* ← no gap, padding is on the items */
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 180;
    overflow-y: auto;
  }
  .nav.open { transform: translateX(0); }
  .nav a {
    font-size: 19px;                 /* ← slightly smaller */
    font-weight: 500;
    padding: 14px 20px;              /* ← tighter vertical */
    width: 100%;
    max-width: 320px;                /* ← don't stretch super wide */
    text-align: center;
    color: var(--ink);
    border-radius: 10px;             /* ← nice hover feel */
  }
  .nav a:not(.nav__cta)::after { display: none; }
  .nav__cta {
    width: auto;
    min-width: 200px;
    text-align: center;
    margin-top: 20px;
    padding: 14px 32px !important;
    font-size: 15px !important;
  }
  .hamburger { display: flex; z-index: 250; }  

  .brand__logo { width: 42px; height: 56px; }
  .brand__name { font-size: 21px; }
  .brand__tagline { font-size: 9.5px; letter-spacing: 0.12em; }

  .hero { padding-top: 40px; }
  .hero__inner { padding-bottom: 50px; gap: 40px; }
  .hero__title { font-size: 2.1rem; }
  .hero__lead { font-size: 16px; }
  .hero__cta { gap: 10px; margin-bottom: 36px; }
  .hero__stats { gap: 24px; padding-top: 24px; }
  .stat__num { font-size: 30px; }
  .stat__label { font-size: 11px; }

  .hero__visual { max-width: 320px; }

  .brand-showcase { padding: 60px 0; }
  .brand-showcase__values { grid-template-columns: 1fr 1fr; }

  .about__media { max-width: 380px; gap: 12px; }
  .about__quote-card { padding: 18px 22px; }
  .about__creds { grid-template-columns: 1fr; gap: 16px; }

  .approach__grid { grid-template-columns: 1fr; }
  .programs__grid { grid-template-columns: 1fr; }
  .why__grid { grid-template-columns: 1fr; }
  .program-card__body { padding: 24px; }
  .program-card__body h3 { font-size: 23px; }

  .form-row { grid-template-columns: 1fr; }
  .contact__form { padding: 28px 22px; }

  .footer { padding: 50px 0 0; }
  .footer__grid { grid-template-columns: 1fr; gap: 36px; padding-bottom: 36px; }
  .footer__bottom-inner { justify-content: center; text-align: center; }
  .footer__bottom span:last-child { width: 100%; }
  .footer__bottom { padding-bottom: 90px; }

  .float-wa { width: 54px; height: 54px; font-size: 24px; bottom: 18px; right: 18px; }
}

/* ----- Mobile large (≤540px) ----- */
@media (max-width: 540px) {
  .container { padding: 0 16px; }
  .section { padding: 50px 0; }
  .section-title { font-size: 1.9rem; }
  .section-head { margin-bottom: 32px; }
  .section-lead { font-size: 15px; margin-bottom: 30px; }

  .hero__title { font-size: 1.85rem; }
  .hero__lead { font-size: 15px; margin-bottom: 28px; }
  .hero__cta { flex-direction: column; align-items: stretch; width: 100%; }
  .hero__cta .btn { width: 100%; }
  .hero__stats { gap: 18px; }
  .stat__num { font-size: 26px; }

  .hero__pillars-inner { grid-template-columns: 1fr 1fr; gap: 22px 16px; }
  .pillar { padding: 0 4px; }
  .pillar h4 { font-size: 19px; }
  .pillar p { font-size: 13px; }

  .brand__logo { width: 38px; height: 50px; }
  .brand__text { display: none; } /* On tiny screens, rely on logo image alone */
  .brand { gap: 0; }

  .hero__visual { max-width: 280px; }
  .hero__badge { padding: 10px 14px; left: -8px; bottom: 14px; }
  .hero__badge strong { font-size: 13px; }
  .hero__badge i { font-size: 18px; }

  .brand-showcase__values { grid-template-columns: 1fr; }
  .brand-showcase__value { padding: 16px; }

  .about__list li { font-size: 14px; }
  .about__creds { padding-top: 28px; margin-top: 28px; }

  .program-card__body h3 { font-size: 22px; }
  .program-card__body > p { font-size: 14px; }
  .program-card__body li { font-size: 13px; }

  .price-card { padding: 32px 24px; }
  .price-card__price { font-size: 40px; }
  .price-card h3 { font-size: 24px; }

  .step { padding: 32px 24px; }
  .step h4 { font-size: 20px; }
  .step p { font-size: 14px; }

  .testimonial { padding: 28px 24px; }
  .testimonial > p { font-size: 14px; }

  .cta { padding: 60px 0; }
  .cta__buttons { flex-direction: column; align-items: stretch; }
  .cta__buttons .btn { width: 100%; }

  .contact__form { padding: 24px 18px; }
  .contact__form h3 { font-size: 24px; }
  .form-group input, .form-group select, .form-group textarea { padding: 12px 14px; font-size: 14px; }

  .footer__col h5 { font-size: 18px; }
}

/* ----- Mobile tiny (≤380px) ----- */
@media (max-width: 380px) {
  .container { padding: 0 12px; }
  .hero__title { font-size: 1.65rem; }
  .section-title { font-size: 1.7rem; }
  .stat__num { font-size: 24px; }
  .top-strip { font-size: 11px; padding: 8px 0; }
  .strip-cta { font-size: 11px; padding: 4px 12px; }
  .float-wa { width: 50px; height: 50px; font-size: 22px; }
  .nav a { font-size: 20px; padding: 12px 20px; }
  .nav__cta { min-width: 200px; padding: 14px 32px !important; font-size: 15px !important; }
}

/* ----- Hover-only effects (disable on touch) ----- */
@media (hover: none) {
  .approach-card:hover, .program-card:hover, .why-card:hover, .testimonial:hover, .price-card:hover, .step:hover {
    transform: none;
  }
  .nav a:not(.nav__cta):hover::after { width: 0; }
}

/* ==========================================================================
   PREMIUM PROGRAMS SECTION OVERRIDE
   ========================================================================== */

/* Overall Section Styling */
.premium-programs {
  background-color: #FAFAF7; /* Warm, elegant cream background */
  padding: 5rem 1rem;
  font-family: 'Inter', sans-serif; /* Clean modern font */
}

.premium-programs .section-head {
  text-align: center;
  margin-bottom: 3rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.premium-programs .section-eyebrow {
  display: block;
  color: #245A44; /* Forest green */
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
}

.premium-programs .section-title {
  font-size: 2.5rem;
  color: #1A1A1A;
  margin-bottom: 1rem;
}

.premium-programs .section-title em {
  font-style: italic;
  color: #245A44;
}

.premium-programs .section-lead {
  color: #555;
  font-size: 1.1rem;
  line-height: 1.6;
}

/* The 3 + 2 Flex Grid Magic */
.premium-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center; /* This perfectly centers the bottom 2 cards! */
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

/* The Cards */
.premium-programs .program-card {
  background: #FFFFFF;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  
  /* Sizing: Forces 3 columns on large screens. Minus gap space. */
  flex: 0 1 calc(33.333% - 1.35rem); 
  min-width: 320px; /* Prevents them from getting too skinny on tablets */
  
  /* Flex direction ensures buttons align at the bottom */
  display: flex;
  flex-direction: column; 
}

.premium-programs .program-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

/* Image Consistency - The most important part! */
.premium-programs .program-card__media {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3; /* Forces EVERY image to be identical in shape */
  overflow: hidden;
}

.premium-programs .program-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover; 
  object-position: top; /* Forces the crop to start at the top of the head */
}

/* Floating Tag inside Image */
.premium-programs .program-card__tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: #245A44;
  color: #FFF;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 0.4rem 0.8rem;
  border-radius: 50px;
  letter-spacing: 1px;
}

/* Card Text Content */
.premium-programs .program-card__body {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1; /* Pushes the button to the bottom */
}

.premium-programs .program-card__body h3 {
  font-size: 1.4rem;
  color: #1A1A1A;
  margin-top: 0;
  margin-bottom: 0.8rem;
}

.premium-programs .program-card__body p {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

/* Clean Bullet Points */
.premium-programs .program-features {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
}

.premium-programs .program-features li {
  font-size: 0.9rem;
  color: #444;
  margin-bottom: 0.8rem;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.premium-programs .program-features i {
  color: #245A44;
  margin-top: 0.25rem;
}

/* The Button Footer */
.premium-programs .card-footer {
  margin-top: auto; /* Always sits at the exact bottom */
  border-top: 1px solid #EBEBEB;
  padding-top: 1.5rem;
}

.premium-programs .program-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #245A44;
  font-weight: 600;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.2s ease;
}

.premium-programs .program-card__link:hover {
  color: #163d2e;
}

/* Mobile Responsiveness */
@media (max-width: 1024px) {
  .premium-programs .program-card {
    flex: 0 1 calc(50% - 1rem); /* 2 columns on tablets */
  }
}

@media (max-width: 768px) {
  .premium-programs .program-card {
    flex: 0 1 100%; /* 1 column on mobile */
  }
}

/* Custom crop for the Stress Management image */
.premium-programs .program-card__media img.center-crop {
  object-position: center 20%; 
}