/* ============================================================
   JewelCraft Academy — home2 stylesheet (full-home layout)
   Cream + gold luxury theme, built from scratch.
   ============================================================ */

:root {
  --jx-cream:        #f7efe4;
  --jx-cream-deep:   #f1e5d3;
  --jx-ivory:        #fdfaf4;
  --jx-white:        #ffffff;
  --jx-gold:         #b8860b;
  --jx-gold-2:       #c9952c;
  --jx-gold-soft:    #d8b56a;
  --jx-gold-grad:    linear-gradient(135deg, #d9a84e 0%, #b9802a 55%, #a06c1d 100%);
  --jx-ink:          #241a10;
  --jx-ink-soft:     #5d5044;
  --jx-ink-mute:     #8a7c6c;
  --jx-line:         #e7d9c2;
  --jx-shadow:       0 12px 34px rgba(120, 90, 40, .10);
  --jx-shadow-soft:  0 6px 18px rgba(120, 90, 40, .07);
  --jx-serif:        'Playfair Display', Georgia, serif;
  --jx-sans:         'Jost', 'Segoe UI', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--jx-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--jx-ink);
  background: var(--jx-cream);
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; transition: color .25s; }
ul { list-style: none; }
h1, h2, h3, h4, h5 { font-family: var(--jx-serif); font-weight: 600; line-height: 1.25; }

.jx-container {
  width: min(1600px, 95%);
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* ---------------------------------------------- buttons */
.jx-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 26px;
  border: none;
  border-radius: 11px;
  font-family: var(--jx-sans);
  font-size: 14.5px;
  font-weight: 500;
  letter-spacing: .3px;
  cursor: pointer;
  transition: transform .25s, box-shadow .25s;
}
.jx-btn-gold {
  background: var(--jx-gold-grad);
  color: #fff;
  box-shadow: 0 8px 18px rgba(160, 108, 29, .28);
}
.jx-btn-gold:hover { transform: translateY(-2px); box-shadow: 0 12px 26px rgba(160, 108, 29, .38); color: #fff; }
.jx-btn-ghost {
  background: var(--jx-white);
  color: var(--jx-ink);
  border: 1px solid var(--jx-line);
  box-shadow: var(--jx-shadow-soft);
}
.jx-btn-ghost:hover { border-color: var(--jx-gold-soft); color: var(--jx-gold); }
.jx-btn-outline {
  background: transparent;
  color: var(--jx-ink);
  border: 1.4px solid #cdbb9c;
}
.jx-btn-outline:hover { border-color: var(--jx-gold); color: var(--jx-gold); }
.jx-btn-block { width: 100%; }

/* ============================================================
   HEADER
   ============================================================ */
.jx-header {
  position: relative;
  z-index: 5;
  padding: 20px max(2.5%, calc((100% - 1600px) / 2)) 0;
}
.jx-header-pill {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  background: rgba(255, 252, 247, .82);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.6);
  border-radius: 999px;
  padding: 12px 14px 12px 28px;
  box-shadow: 0 12px 34px rgba(120, 90, 40, .12);
}

.jx-brand { display: inline-flex; align-items: center; gap: 13px; }
.jx-brand-mark {
  width: 52px; height: 52px;
  display: grid; place-items: center;
  border: 1.8px solid var(--jx-gold-2);
  color: var(--jx-gold-2);
  font-size: 23px;
  border-radius: 12px;
  transform: rotate(45deg);
}
.jx-brand-mark i { transform: rotate(-45deg); }
.jx-brand-text { display: flex; flex-direction: column; line-height: 1.02; }
.jx-brand-text strong {
  font-family: var(--jx-serif);
  font-size: 28px;
  font-weight: 600;
  color: #2b1d0c;
}
.jx-brand-text small {
  font-size: 11px;
  letter-spacing: 5px;
  color: var(--jx-gold-2);
  font-weight: 500;
  margin-top: 1px;
}

.jx-nav { display: flex; align-items: center; gap: 34px; }
.jx-nav a {
  font-size: 16.5px;
  font-weight: 500;
  color: #4a3f33;
  padding-bottom: 5px;
  border-bottom: 2px solid transparent;
}
.jx-nav a:hover { color: var(--jx-ink); }
.jx-nav a.active { color: var(--jx-gold); border-bottom-color: var(--jx-gold-2); }

.jx-header-actions { display: flex; align-items: center; gap: 14px; }
.jx-search-btn {
  width: 52px; height: 52px;
  border-radius: 50%;
  border: 1px solid var(--jx-line);
  background: var(--jx-white);
  color: var(--jx-ink);
  font-size: 17px;
  cursor: pointer;
  transition: all .25s;
}
.jx-search-btn:hover { border-color: var(--jx-gold-soft); color: var(--jx-gold); }
.jx-header-actions .jx-btn-gold { border-radius: 999px; padding: 15px 34px; font-size: 16px; }
.jx-burger { display: none; width: 52px; height: 52px; border-radius: 50%; border: 1px solid var(--jx-line); background: var(--jx-white); font-size: 18px; cursor: pointer; }

/* ============================================================
   HERO
   ============================================================ */
.jx-hero {
  position: relative;
  padding: 0;
  overflow: hidden;
}
.jx-hero-card {
  position: relative;
  width: 100%;
  min-height: 760px;
  border-radius: 0;
  background: linear-gradient(120deg, #f4e8d5 0%, #efe2cd 60%, #ecdcc4 100%);
}

/* artisan photo bleeds to the right edge, blending into cream on the left */
.jx-hero-photo {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 56%;
  border-radius: 0;
  overflow: hidden;
  z-index: 0;
}
.jx-hero-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 47% 40%;
}
.jx-hero-photo::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(90deg, #f1e4cf 0%, #f1e4cf 27%, rgba(241,228,207,.5) 41%, rgba(241,228,207,0) 60%),
              linear-gradient(0deg, rgba(241,228,207,.4) 0%, rgba(241,228,207,0) 16%);
}

/* deco jewellery overlapping the rounded card's left edge */
.jx-hero-deco {
  display: none;
  position: absolute;
  left: -20px;
  width: 172px;
  z-index: 2;
  -webkit-mask-image: radial-gradient(128% 116% at 24% 50%, #000 40%, transparent 78%);
          mask-image: radial-gradient(128% 116% at 24% 50%, #000 40%, transparent 78%);
}
.jx-hero-deco img { border-radius: 0; box-shadow: none; }
.jx-hero-deco-top { top: -6px; }
.jx-hero-deco-bottom { bottom: 60px; width: 158px; }

/* hero copy overlaid on the left */
.jx-hero-body {
  position: relative;
  z-index: 3;
  max-width: 620px;
  margin-left: max(2.5%, calc((100% - 1600px) / 2));
  padding: 50px 0 210px;
}

.jx-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: .5px;
  color: var(--jx-gold);
  margin-bottom: 20px;
}
.jx-eyebrow i { font-size: 19px; }

.jx-hero-body h1 {
  font-size: clamp(44px, 5.4vw, 78px);
  font-weight: 600;
  color: #1d150c;
  line-height: 1.05;
  letter-spacing: -.5px;
  margin-bottom: 26px;
  white-space: nowrap;
}
@media (max-width: 1100px) {
  .jx-hero-body h1 { white-space: normal; }
}
.jx-hero-body h1 em {
  font-style: italic;
  font-weight: 500;
  color: var(--jx-gold-2);
}

.jx-hero-lede {
  font-size: 17.5px;
  color: var(--jx-ink-soft);
  line-height: 1.6;
  max-width: 520px;
  margin-bottom: 34px;
}

.jx-hero-cta { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 34px; }
.jx-hero-cta .jx-btn { padding: 16px 32px; font-size: 16px; border-radius: 12px; }

.jx-proof { display: flex; align-items: center; gap: 16px; }
.jx-proof-avatars { display: flex; }
.jx-proof-avatars img {
  width: 48px; height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--jx-cream);
  margin-left: -13px;
}
.jx-proof-avatars img:first-child { margin-left: 0; }
.jx-proof-text { display: flex; flex-direction: column; gap: 3px; }
.jx-proof-text strong { font-size: 16px; font-weight: 600; }
.jx-proof-stars { font-size: 15px; color: var(--jx-ink-soft); display: flex; align-items: center; }
.jx-proof-stars i { color: #e2a93b; font-size: 14.5px; margin-right: 1px; }
.jx-proof-stars b { margin: 0 6px 0 8px; color: var(--jx-ink); }

/* floating "Learn Anywhere" card */
.jx-float-card {
  position: absolute;
  right: max(2.5%, calc((100% - 1600px) / 2));
  top: 50%;
  transform: translateY(-30%);
  z-index: 3;
  width: 186px;
  background: rgba(255, 252, 247, .74);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.6);
  border-radius: 24px;
  padding: 24px 20px;
  text-align: center;
  box-shadow: 0 18px 44px rgba(80, 55, 20, .18);
}
.jx-float-icon {
  width: 54px; height: 54px;
  margin: 0 auto 12px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: rgba(245, 232, 207, .9);
  color: var(--jx-gold);
  font-size: 23px;
}
.jx-float-card h5 { font-size: 21px; margin-bottom: 7px; line-height: 1.15; }
.jx-float-card p { font-size: 13px; color: var(--jx-ink-soft); line-height: 1.5; }
.jx-float-arrow {
  width: 40px; height: 40px;
  margin: 14px auto 0;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--jx-gold-grad);
  color: #fff;
  font-size: 14px;
}

/* stats bar inside the card at the bottom */
.jx-stats {
  position: absolute;
  left: max(2.5%, calc((100% - 1600px) / 2));
  right: max(2.5%, calc((100% - 1600px) / 2));
  bottom: 26px;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: rgba(255, 252, 247, .82);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.55);
  border-radius: 24px;
  box-shadow: 0 14px 38px rgba(80, 55, 20, .12);
  padding: 26px 22px;
}
.jx-stat {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  border-right: 1px solid rgba(200, 175, 130, .35);
}
.jx-stat:last-child { border-right: none; }
.jx-stat-icon {
  width: 58px; height: 58px;
  display: grid; place-items: center;
  border-radius: 50%;
  border: 1px solid var(--jx-line);
  background: rgba(251, 245, 234, .8);
  color: var(--jx-gold);
  font-size: 23px;
}
.jx-stat-body { display: flex; flex-direction: column; }
.jx-stat-body b { font-family: var(--jx-serif); font-size: 30px; font-weight: 700; color: #1d150c; line-height: 1.1; }
.jx-stat-body small { font-size: 14px; color: var(--jx-ink-mute); }

/* ============================================================
   SECTIONS — shared
   ============================================================ */
.jx-section { padding: 52px 0; }
.jx-tight { padding: 40px 0; }

.jx-row-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 26px;
}
.jx-row-head h2 {
  font-size: clamp(24px, 2.4vw, 31px);
  color: #1d150c;
}
.jx-link-more {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--jx-gold);
  white-space: nowrap;
}
.jx-link-more i { margin-left: 6px; font-size: 13px; transition: transform .25s; }
.jx-link-more:hover i { transform: translateX(4px); }

/* centered section header (logo + title + subtitle + diamond) */
.jx-sec-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  margin-bottom: 14px;
}
.jx-sec-logo .jx-brand-mark {
  width: 44px; height: 44px;
  font-size: 19px;
}
.jx-sec-logo-text { text-align: center; line-height: 1.05; }
.jx-sec-logo-text strong {
  display: block;
  font-family: var(--jx-serif);
  font-size: 23px;
  font-weight: 600;
  color: #2b1d0c;
}
.jx-sec-logo-text small {
  font-size: 9.5px;
  letter-spacing: 5px;
  color: var(--jx-gold-2);
  font-weight: 500;
}

.jx-sec-head { text-align: center; margin-bottom: 34px; }
.jx-sec-head h2 {
  font-size: clamp(32px, 3.6vw, 50px);
  color: #1d150c;
}
.jx-sec-head h2 em { font-style: italic; font-weight: 500; color: var(--jx-gold-2); }
.jx-sec-head p {
  margin-top: 12px;
  font-size: 16px;
  color: var(--jx-ink-soft);
}
.jx-diamond {
  display: block;
  margin-top: 18px;
  color: var(--jx-gold-2);
  font-size: 16px;
}

/* ——— ✦ ——— ornament under a heading */
.jx-dash-orn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 16px;
  color: var(--jx-gold-2);
}
.jx-dash-orn i { font-style: normal; font-size: 13px; }
.jx-dash-orn span {
  display: block; width: 90px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--jx-gold-soft));
}
.jx-dash-orn span:last-child { background: linear-gradient(90deg, var(--jx-gold-soft), transparent); }

/* centered heading with dashes on both sides, optional right-pinned link */
.jx-dash-head {
  position: relative;
  text-align: center;
  margin-bottom: 30px;
}
.jx-title-dashes {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  font-size: clamp(24px, 2.6vw, 36px);
  color: #1d150c;
}
.jx-title-dashes::before,
.jx-title-dashes::after {
  content: "";
  width: 52px; height: 1.4px;
  background: var(--jx-gold-soft);
}
.jx-link-abs {
  position: absolute;
  right: 0; bottom: 8px;
}

/* 3-up grids for the full-width mentors & testimonials sections */
.jx-mentor-grid-3 { grid-template-columns: repeat(3, 1fr); }
.jx-testi-grid-3 { grid-template-columns: repeat(3, 1fr); }

/* corner jewellery decorations on the courses section */
.jx-courses-sec { position: relative; overflow: hidden; }
.jx-deco-corner {
  position: absolute;
  top: 0;
  width: 190px;
  z-index: 1;
  pointer-events: none;
}
.jx-deco-corner img { border-radius: 0; }
.jx-deco-corner-tl {
  left: 0;
  -webkit-mask-image: radial-gradient(115% 115% at 25% 25%, #000 38%, transparent 72%);
          mask-image: radial-gradient(115% 115% at 25% 25%, #000 38%, transparent 72%);
}
.jx-deco-corner-tr {
  right: 0;
  -webkit-mask-image: radial-gradient(115% 115% at 75% 25%, #000 38%, transparent 72%);
          mask-image: radial-gradient(115% 115% at 75% 25%, #000 38%, transparent 72%);
}

/* decorative frame around the categories block */
.jx-cats-frame {
  position: relative;
  border: 1px solid #e2cfa6;
  border-radius: 22px;
  padding: 40px 34px 30px;
}
.jx-cats-frame::before,
.jx-cats-frame::after {
  content: "\2740";
  position: absolute;
  top: -12px;
  color: var(--jx-gold-2);
  font-size: 16px;
  background: var(--jx-cream);
  padding: 0 10px;
  line-height: 1;
}
.jx-cats-frame::before { left: 30px; }
.jx-cats-frame::after { right: 30px; }
.jx-cats-tagline {
  margin-top: 26px;
  text-align: center;
  font-family: var(--jx-serif);
  font-style: italic;
  font-size: 17px;
  color: #4a3a24;
}
.jx-cats-tagline span { color: var(--jx-gold-2); margin: 0 12px; font-style: normal; }

/* ============================================================
   FEATURED COURSES
   ============================================================ */
.jx-course-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 20px;
}

.jx-course-card {
  background: var(--jx-ivory);
  border: 1px solid #efe3cd;
  border-radius: 18px;
  padding: 12px;
  box-shadow: var(--jx-shadow-soft);
  display: flex;
  flex-direction: column;
  transition: transform .3s, box-shadow .3s;
}
.jx-course-card:hover { transform: translateY(-5px); box-shadow: var(--jx-shadow); }

.jx-course-media {
  position: relative;
  border-radius: 13px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}
.jx-course-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.jx-course-card:hover .jx-course-media img { transform: scale(1.06); }

.jx-course-badge {
  position: absolute;
  top: 9px; left: 9px;
  background: rgba(253,250,244,.95);
  border: 1px solid var(--jx-line);
  color: #6b5126;
  font-size: 11px;
  font-weight: 500;
  padding: 3px 11px;
  border-radius: 999px;
}
.jx-heart {
  position: absolute;
  top: 8px; right: 8px;
  width: 29px; height: 29px;
  border-radius: 50%;
  border: none;
  background: rgba(253,250,244,.95);
  color: #8a6a33;
  font-size: 12.5px;
  cursor: pointer;
  transition: all .25s;
}
.jx-heart:hover { background: var(--jx-gold-grad); color: #fff; }

.jx-course-body {
  padding: 15px 9px 6px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.jx-course-body h3 {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.32;
  margin-bottom: 6px;
  min-height: 42px;
}
.jx-course-level { font-size: 12.5px; color: var(--jx-ink-mute); margin-bottom: 8px; }
.jx-course-rating { font-size: 13px; color: var(--jx-ink-soft); margin-bottom: 10px; }
.jx-course-rating i { color: #e2a93b; margin-right: 4px; font-size: 12.5px; }
.jx-course-stats {
  display: flex;
  gap: 9px;
  font-size: 11px;
  color: var(--jx-ink-soft);
  padding: 9px 0;
  border-top: 1px dashed var(--jx-line);
  border-bottom: 1px dashed var(--jx-line);
  margin-bottom: 12px;
}
.jx-course-stats span { white-space: nowrap; }
.jx-course-stats i { color: var(--jx-gold); margin-right: 4px; font-size: 11px; }
.jx-course-price {
  font-family: var(--jx-serif);
  font-size: 22px;
  font-weight: 700;
  color: #1d150c;
  margin: auto 0 12px;
}
.jx-course-body .jx-btn {
  padding: 11px 12px;
  font-size: 13px;
  border-radius: 10px;
}

/* ============================================================
   CATEGORIES
   ============================================================ */
.jx-cat-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 16px;
}
.jx-cat-card {
  background: var(--jx-ivory);
  border: 1px solid #efe3cd;
  border-radius: 16px;
  padding: 28px 12px 22px;
  text-align: center;
  box-shadow: var(--jx-shadow-soft);
  transition: transform .3s, border-color .3s;
}
.jx-cat-card:hover { transform: translateY(-5px); border-color: var(--jx-gold-soft); }
.jx-cat-icon {
  display: grid; place-items: center;
  width: 58px; height: 58px;
  margin: 0 auto 14px;
  font-size: 28px;
  color: var(--jx-gold);
}
.jx-cat-card h4 { font-size: 17px; margin-bottom: 3px; }
.jx-cat-card p { font-size: 13.5px; color: var(--jx-ink-mute); }

/* ============================================================
   WHY LEARN — horizontal mini cards
   ============================================================ */
.jx-why-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}
.jx-why-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: var(--jx-ivory);
  border: 1px solid #efe3cd;
  border-radius: 16px;
  padding: 28px 16px;
  box-shadow: var(--jx-shadow-soft);
  transition: transform .3s;
}
.jx-why-card:hover { transform: translateY(-6px); }
.jx-why-icon {
  width: 66px; height: 66px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: #f6ecd9;
  color: var(--jx-gold);
  font-size: 26px;
  margin-bottom: 16px;
}
.jx-why-card h4 { font-size: 16px; line-height: 1.32; margin-bottom: 0; }
.jx-why-line {
  width: 44px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--jx-gold-soft), transparent);
  margin: 12px 0;
}
.jx-why-card p { font-size: 12.5px; color: var(--jx-ink-soft); line-height: 1.55; }

/* ============================================================
   MENTORS + TESTIMONIALS (two-column)
   ============================================================ */
.jx-duo {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 32px;
  align-items: start;
}

.jx-mentor-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.jx-mentor-card {
  display: flex;
  gap: 16px;
  background: var(--jx-ivory);
  border: 1px solid #efe3cd;
  border-radius: 18px;
  padding: 15px;
  box-shadow: var(--jx-shadow-soft);
  transition: transform .3s;
}
.jx-mentor-card:hover { transform: translateY(-5px); }
.jx-mentor-photo {
  flex: 0 0 132px;
  border-radius: 14px;
  overflow: hidden;
}
.jx-mentor-photo img { width: 100%; height: 100%; min-height: 180px; object-fit: cover; }
.jx-mentor-info { padding: 5px 2px; }
.jx-mentor-info h4 { font-size: 19px; margin-bottom: 3px; }
.jx-mentor-role { font-size: 14px; color: var(--jx-gold); margin-bottom: 8px; }
.jx-mentor-spec { font-size: 13.5px; color: var(--jx-ink-soft); margin-bottom: 8px; line-height: 1.45; }
.jx-mentor-exp { font-size: 13.5px; color: var(--jx-ink-soft); margin-bottom: 4px; }
.jx-mentor-exp i, .jx-mentor-rating i { color: #e2a93b; font-size: 12.5px; }
.jx-mentor-rating { font-size: 13.5px; color: var(--jx-ink-soft); margin-bottom: 11px; }
.jx-mentor-rating b { margin: 0 2px; }
.jx-mentor-social { display: flex; gap: 8px; }
.jx-mentor-social a {
  width: 32px; height: 32px;
  display: grid; place-items: center;
  border-radius: 8px;
  border: 1px solid var(--jx-line);
  color: var(--jx-ink-soft);
  font-size: 13px;
  transition: all .25s;
}
.jx-mentor-social a:hover { background: var(--jx-gold-grad); color: #fff; border-color: transparent; }

.jx-testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.jx-testi-card {
  background: var(--jx-ivory);
  border: 1px solid #efe3cd;
  border-radius: 18px;
  padding: 26px 24px 22px;
  box-shadow: var(--jx-shadow-soft);
  transition: transform .3s;
}
.jx-testi-card:hover { transform: translateY(-5px); }
.jx-testi-body { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 18px; }
.jx-quote { color: var(--jx-gold-2); font-size: 26px; line-height: 1; flex: 0 0 auto; }
.jx-testi-card p { font-size: 15px; color: var(--jx-ink-soft); line-height: 1.65; }
.jx-testi-card footer { display: flex; align-items: center; gap: 13px; }
.jx-testi-card footer img {
  width: 46px; height: 46px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #fff;
  box-shadow: var(--jx-shadow-soft);
}
.jx-testi-who { display: flex; flex-direction: column; }
.jx-testi-who b { font-size: 15px; }
.jx-testi-stars i { color: #e2a93b; font-size: 12px; margin-right: 1px; }

.jx-dots { display: flex; justify-content: center; gap: 8px; margin-top: 18px; }
.jx-dots span {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #ddc9a4;
}
.jx-dots span.on { background: var(--jx-gold-2); width: 22px; border-radius: 99px; }

/* ============================================================
   LEARNING PATH + COMMITMENT
   ============================================================ */
/* corner jewellery on the pricing section */
.jx-pricing-sec { position: relative; overflow: hidden; }

/* centered uppercase gold eyebrow */
.jx-eyebrow-c {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--jx-gold);
  margin-bottom: 14px;
}
.jx-eyebrow-c i { font-size: 13px; }

.jx-price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  align-items: stretch;
  margin-bottom: 26px;
}
.jx-price-card {
  position: relative;
  background: var(--jx-ivory);
  border: 1px solid #efe3cd;
  border-radius: 20px;
  padding: 34px 30px 30px;
  box-shadow: var(--jx-shadow-soft);
  display: flex;
  flex-direction: column;
  transition: transform .3s;
}
.jx-price-card:hover { transform: translateY(-6px); }
.jx-price-popular {
  border: 2px solid var(--jx-gold-2);
  box-shadow: 0 22px 46px rgba(160, 108, 29, .18);
}
.jx-popular-flag {
  position: absolute;
  top: -16px; left: 50%;
  transform: translateX(-50%);
  background: var(--jx-gold-grad);
  color: #fff;
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: .4px;
  padding: 7px 22px;
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: 0 8px 18px rgba(160,108,29,.32);
}
.jx-popular-flag i { font-size: 10px; margin: 0 4px; }

.jx-price-head {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 18px;
}
.jx-price-icon {
  flex: 0 0 56px;
  width: 56px; height: 56px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: #f6ecd9;
  color: var(--jx-gold);
  font-size: 23px;
}
.jx-price-card h3 { font-size: 26px; margin-bottom: 2px; }
.jx-price-for { font-size: 14.5px; color: var(--jx-gold); font-weight: 500; }
.jx-price-desc {
  font-size: 14.5px;
  color: var(--jx-ink-soft);
  line-height: 1.55;
  margin-bottom: 22px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--jx-line);
}
.jx-price-card ul { flex: 1; margin-bottom: 22px; }
.jx-price-card ul li {
  font-size: 14.5px;
  color: var(--jx-ink-soft);
  padding: 7px 0;
  display: flex;
  align-items: center;
  gap: 12px;
}
.jx-price-card ul li i { color: var(--jx-gold-2); font-size: 13px; }
.jx-price-amount {
  font-family: var(--jx-serif);
  font-size: 38px;
  font-weight: 700;
  color: #1d150c;
  text-align: center;
  margin-bottom: 20px;
}
.jx-price-amount small {
  font-family: var(--jx-sans);
  font-size: 14px;
  font-weight: 400;
  color: var(--jx-ink-mute);
}
.jx-price-card .jx-btn { padding: 14px 14px; font-size: 15px; border-radius: 11px; }

/* commitment strip (3 items) */
.jx-commit {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  background: var(--jx-ivory);
  border: 1px solid #efe3cd;
  border-radius: 20px;
  box-shadow: var(--jx-shadow-soft);
  padding: 30px 24px;
}
.jx-commit-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 0 16px;
  border-right: 1px solid var(--jx-line);
}
.jx-commit-item:last-child { border-right: none; }
.jx-commit-icon {
  flex: 0 0 52px;
  width: 52px; height: 52px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: #f6ecd9;
  color: var(--jx-gold);
  font-size: 21px;
}
.jx-commit-item h4 { font-size: 17px; margin-bottom: 6px; }
.jx-commit-item p { font-size: 13px; color: var(--jx-ink-soft); line-height: 1.5; }

/* commitment panel */
.jx-journey {
  background: var(--jx-ivory);
  border: 1px solid #efe3cd;
  border-radius: 18px;
  padding: 30px 24px;
  box-shadow: var(--jx-shadow-soft);
  display: flex;
  flex-direction: column;
}
.jx-journey h3 {
  font-size: 22px;
  text-align: center;
  margin-bottom: 22px;
}
.jx-journey h3 i { color: var(--jx-gold-2); font-size: 17px; margin-left: 6px; }
.jx-journey-grid {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.jx-journey-item {
  background: var(--jx-white);
  border: 1px solid #f0e6d2;
  border-radius: 14px;
  padding: 24px 14px;
  text-align: center;
}
.jx-journey-icon {
  width: 56px; height: 56px;
  margin: 0 auto 14px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: #f6ecd9;
  color: var(--jx-gold);
  font-size: 22px;
}
.jx-journey-item h4 { font-size: 16px; line-height: 1.3; margin-bottom: 8px; }
.jx-journey-item p { font-size: 13px; color: var(--jx-ink-soft); line-height: 1.5; }

/* ============================================================
   CTA BAND (full-width dark)
   ============================================================ */
.jx-cta {
  position: relative;
  margin-top: 24px;
  background: linear-gradient(110deg, #171007 0%, #2b1c0c 50%, #3e2a10 100%);
  padding: 42px 0;
  overflow: hidden;
}
.jx-cta::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(216,181,106,.13), transparent 60%);
}
.jx-cta-img {
  position: absolute;
  top: 0; bottom: 0;
  width: 26%;
  opacity: .5;
}
.jx-cta-img img { width: 100%; height: 100%; object-fit: cover; }
.jx-cta-img-left {
  left: 0;
  -webkit-mask-image: linear-gradient(90deg, #000 15%, transparent 90%);
          mask-image: linear-gradient(90deg, #000 15%, transparent 90%);
}
.jx-cta-img-right {
  right: 0;
  -webkit-mask-image: linear-gradient(270deg, #000 15%, transparent 90%);
          mask-image: linear-gradient(270deg, #000 15%, transparent 90%);
}
.jx-cta-inner { text-align: center; }
.jx-cta-eyebrow {
  font-family: var(--jx-serif);
  font-size: 16px;
  color: #f3e7cd;
  margin-bottom: 2px;
}
.jx-cta-eyebrow em { font-style: normal; color: var(--jx-gold-soft); }
.jx-cta-orn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 6px 0 12px;
  color: var(--jx-gold-soft);
}
.jx-cta-orn i { font-style: normal; font-size: 12px; }
.jx-cta-orn span {
  display: block; width: 66px; height: 1px;
  background: linear-gradient(90deg, transparent, #8a6f3e);
}
.jx-cta-orn span:last-child { background: linear-gradient(90deg, #8a6f3e, transparent); }
.jx-cta-inner h2 {
  font-size: clamp(26px, 3vw, 40px);
  color: #faf3e3;
  line-height: 1.1;
  margin-bottom: 10px;
}
.jx-cta-inner h2 em { font-style: italic; font-weight: 500; color: var(--jx-gold-soft); }
.jx-cta-shine {
  font-family: var(--jx-serif);
  font-size: 16px;
  color: #e9dcbd;
  margin-bottom: 10px;
}
.jx-cta-shine i { color: var(--jx-gold-soft); font-size: 14px; margin-right: 7px; }
.jx-cta-shine b { color: #fff; }
.jx-cta-lede { color: #cbb692; font-size: 14.5px; line-height: 1.6; margin-bottom: 22px; }
.jx-cta-inner .jx-btn { padding: 13px 30px; font-size: 15px; }

/* ============================================================
   FOOTER
   ============================================================ */
.jx-footer {
  background: var(--jx-cream);
  padding: 60px 0 26px;
  border-top: 1px solid var(--jx-line);
}
.jx-footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1.25fr 1.3fr;
  gap: 28px;
}

.jx-footer-brand .jx-brand-mark { width: 40px; height: 40px; font-size: 17px; }
.jx-footer-brand .jx-brand-text strong { font-size: 20px; }
.jx-footer-brand p {
  font-size: 13.5px;
  color: var(--jx-ink-soft);
  margin: 16px 0;
  line-height: 1.65;
  max-width: 250px;
}
.jx-footer-social { display: flex; gap: 9px; }
.jx-footer-social a {
  width: 35px; height: 35px;
  display: grid; place-items: center;
  border-radius: 50%;
  border: 1.3px solid var(--jx-gold-soft);
  color: var(--jx-gold);
  font-size: 13.5px;
  transition: all .25s;
}
.jx-footer-social a:hover { background: var(--jx-gold-grad); color: #fff; border-color: transparent; }

.jx-footer-col h5 {
  font-size: 16.5px;
  margin-bottom: 18px;
  padding-bottom: 12px;
  position: relative;
}
.jx-footer-col h5::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 46px; height: 1px;
  background: linear-gradient(90deg, var(--jx-gold-soft), rgba(216,181,106,0));
}
.jx-footer-col ul li { padding: 5px 0; }
.jx-footer-col ul li a { font-size: 13.5px; color: var(--jx-ink-soft); }
.jx-footer-col ul li a:hover { color: var(--jx-gold); }

.jx-footer-contact li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  color: var(--jx-ink-soft);
  padding: 5px 0 !important;
}
.jx-footer-contact li i { color: var(--jx-gold); font-size: 13px; }

.jx-footer-news > p { font-size: 13.5px; color: var(--jx-ink-soft); margin-bottom: 12px; }
.jx-footer-news form { display: flex; flex-direction: column; gap: 9px; }
.jx-footer-news .jx-footer-tag {
  margin-top: 16px;
  text-align: right;
  font-family: var(--jx-serif);
  font-style: italic;
  font-size: 14px;
  color: #4a3a24;
}
.jx-footer-news input {
  width: 100%;
  padding: 11px 15px;
  border: 1px solid var(--jx-line);
  border-radius: 9px;
  background: var(--jx-white);
  font-family: var(--jx-sans);
  font-size: 13.5px;
  color: var(--jx-ink);
  outline: none;
  transition: border-color .25s;
}
.jx-footer-news input:focus { border-color: var(--jx-gold-soft); }
.jx-footer-news .jx-btn { padding: 10px 14px; font-size: 13.5px; border-radius: 9px; }

.jx-footer-bottom {
  margin-top: 34px;
  padding-top: 20px;
  border-top: 1px solid var(--jx-line);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 18px;
}
.jx-footer-bottom p { font-size: 13px; color: var(--jx-ink-soft); }
.jx-footer-gem {
  grid-column: 2;
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--jx-gold-2);
  font-size: 17px;
}
.jx-footer-gem span {
  display: block;
  width: 130px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--jx-gold-soft), transparent);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1200px) {
  .jx-course-grid { grid-template-columns: repeat(3, 1fr); }
  .jx-cat-grid { grid-template-columns: repeat(4, 1fr); }
  .jx-why-grid { grid-template-columns: repeat(3, 1fr); }
  .jx-mentor-grid-3, .jx-testi-grid-3 { grid-template-columns: repeat(2, 1fr); }
  .jx-duo { grid-template-columns: 1fr; }
  .jx-path-grid { grid-template-columns: 1fr; }
  .jx-footer-grid { grid-template-columns: repeat(3, 1fr); }
  .jx-hero-deco { display: none; }
}

@media (max-width: 992px) {
  .jx-nav { display: none; }
  .jx-header-pill.nav-open .jx-nav {
    display: flex;
    position: absolute;
    top: 74px; left: 3%; right: 3%;
    flex-direction: column;
    background: var(--jx-white);
    border-radius: 20px;
    padding: 22px;
    box-shadow: var(--jx-shadow);
    z-index: 60;
  }
  .jx-burger { display: block; }
  .jx-header-pill { position: relative; }

  /* hero card becomes a stacked column on tablet/mobile */
  .jx-hero-card { min-height: 0; }
  .jx-hero-photo {
    position: relative;
    inset: auto;
    height: 320px;
    border-radius: 30px;
    margin-bottom: 18px;
  }
  .jx-hero-photo::after { background: linear-gradient(0deg, var(--jx-cream) 0%, rgba(247,239,228,0) 45%); }
  .jx-header {
    position: absolute;
    top: 0; left: 0; right: 0;
    padding: 16px 5% 0;
  }
  .jx-hero-body { padding: 0 5% 26px; margin-left: 0; max-width: 100%; }
  .jx-float-card { display: none; }
  .jx-stats {
    position: static;
    left: auto; right: auto; bottom: auto;
    margin: 0 5%;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px 10px;
  }
  .jx-stat { border-right: none; justify-content: flex-start; }

  .jx-course-grid { grid-template-columns: repeat(2, 1fr); }
  .jx-price-grid { grid-template-columns: repeat(3, 1fr); }
  .jx-cta-img { display: none; }
  .jx-deco-corner { display: none; }
}

@media (max-width: 680px) {
  .jx-course-grid, .jx-mentor-grid, .jx-mentor-grid-3, .jx-testi-grid, .jx-testi-grid-3, .jx-price-grid, .jx-footer-grid { grid-template-columns: 1fr; }
  .jx-why-grid, .jx-cat-grid { grid-template-columns: repeat(2, 1fr); }
  .jx-journey-grid { grid-template-columns: 1fr; }
  .jx-commit { grid-template-columns: 1fr; gap: 14px; }
  .jx-commit-item { border-right: none; border-bottom: 1px solid var(--jx-line); padding: 0 0 16px; }
  .jx-commit-item:last-child { border-bottom: none; padding-bottom: 0; }
  .jx-link-abs { position: static; display: inline-flex; margin-top: 10px; }
  .jx-title-dashes::before, .jx-title-dashes::after { width: 26px; }
  .jx-row-head { flex-direction: column; align-items: flex-start; gap: 8px; }
  .jx-float-card { display: none; }
  .jx-footer-bottom { flex-direction: column; }
  .jx-stats { grid-template-columns: 1fr; }
}

/* ============================================================
   INNER PAGES (sticky header + page hero + content)
   ============================================================ */
.jx-header-top {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 16px max(2.5%, calc((100% - 1600px) / 2)) 16px;
  background: linear-gradient(180deg, rgba(247,239,228,.96), rgba(247,239,228,.82));
  backdrop-filter: blur(10px);
}
.jx-header-top .jx-header-pill { box-shadow: 0 12px 34px rgba(120, 90, 40, .12); }

/* page hero / breadcrumb banner */
.jx-page-hero {
  position: relative;
  padding: 60px 0 56px;
  text-align: center;
  background: linear-gradient(180deg, var(--jx-cream-deep), var(--jx-cream));
  border-bottom: 1px solid var(--jx-line);
  overflow: hidden;
}
.jx-page-hero::before,
.jx-page-hero::after {
  content: "\2726";
  position: absolute;
  top: 40%;
  color: var(--jx-gold-soft);
  font-size: 26px;
  opacity: .5;
}
.jx-page-hero::before { left: 6%; }
.jx-page-hero::after { right: 6%; }
.jx-page-hero .jx-eyebrow { justify-content: center; margin-bottom: 10px; }
.jx-page-hero h1 {
  font-size: clamp(34px, 4vw, 54px);
  color: #1d150c;
}
.jx-page-hero h1 em { font-style: italic; font-weight: 500; color: var(--jx-gold-2); }
.jx-crumb {
  margin-top: 14px;
  font-size: 14px;
  color: var(--jx-ink-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
}
.jx-crumb a { color: var(--jx-gold); }
.jx-crumb i { font-size: 9px; color: var(--jx-gold-soft); }

/* generic prose / content */
.jx-prose { max-width: 820px; margin: 0 auto; }
.jx-prose p { font-size: 16px; color: var(--jx-ink-soft); line-height: 1.75; margin-bottom: 18px; }
.jx-prose h3 { font-size: 24px; color: #1d150c; margin: 26px 0 12px; }

/* about split */
.jx-about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  align-items: center;
}
.jx-about-img img { width: 100%; border-radius: 22px; box-shadow: var(--jx-shadow); }
.jx-about-copy h2 { font-size: clamp(26px, 2.8vw, 38px); color: #1d150c; margin-bottom: 16px; }
.jx-about-copy h2 em { font-style: italic; font-weight: 500; color: var(--jx-gold-2); }
.jx-about-copy p { font-size: 15.5px; color: var(--jx-ink-soft); line-height: 1.75; margin-bottom: 16px; }
.jx-about-points { margin-top: 8px; }
.jx-about-points li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 15px; color: var(--jx-ink-soft); padding: 7px 0;
}
.jx-about-points li i {
  color: var(--jx-gold-2); font-size: 15px; margin-top: 3px;
}

/* product grid */
.jx-prod-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.jx-prod-card {
  background: var(--jx-ivory);
  border: 1px solid #efe3cd;
  border-radius: 18px;
  padding: 14px;
  box-shadow: var(--jx-shadow-soft);
  transition: transform .3s, box-shadow .3s;
}
.jx-prod-card:hover { transform: translateY(-6px); box-shadow: var(--jx-shadow); }
.jx-prod-media { border-radius: 13px; overflow: hidden; aspect-ratio: 1/1; background: #f3e7d3; }
.jx-prod-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.jx-prod-card:hover .jx-prod-media img { transform: scale(1.06); }
.jx-prod-body { padding: 16px 8px 6px; text-align: center; }
.jx-prod-body h3 { font-size: 18px; margin-bottom: 6px; }
.jx-prod-cat { font-size: 12.5px; color: var(--jx-gold); letter-spacing: .5px; text-transform: uppercase; margin-bottom: 10px; }
.jx-prod-price { font-family: var(--jx-serif); font-size: 22px; font-weight: 700; color: #1d150c; margin-bottom: 14px; }
.jx-prod-card .jx-btn { padding: 11px 18px; font-size: 14px; }

/* blog grid */
.jx-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.jx-blog-card {
  background: var(--jx-ivory);
  border: 1px solid #efe3cd;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--jx-shadow-soft);
  transition: transform .3s, box-shadow .3s;
}
.jx-blog-card:hover { transform: translateY(-6px); box-shadow: var(--jx-shadow); }
.jx-blog-media { aspect-ratio: 16/10; overflow: hidden; background: #f3e7d3; }
.jx-blog-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.jx-blog-card:hover .jx-blog-media img { transform: scale(1.06); }
.jx-blog-body { padding: 22px 22px 24px; }
.jx-blog-meta { font-size: 12.5px; color: var(--jx-gold); letter-spacing: .5px; text-transform: uppercase; margin-bottom: 10px; }
.jx-blog-body h3 { font-size: 20px; line-height: 1.35; margin-bottom: 10px; }
.jx-blog-body p { font-size: 14px; color: var(--jx-ink-soft); line-height: 1.6; margin-bottom: 14px; }
.jx-blog-more { font-size: 14px; font-weight: 500; color: var(--jx-gold); }
.jx-blog-more i { margin-left: 6px; font-size: 12px; }

/* contact */
.jx-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 40px;
  align-items: start;
}
.jx-contact-info { display: flex; flex-direction: column; gap: 18px; }
.jx-contact-item {
  display: flex; align-items: flex-start; gap: 16px;
  background: var(--jx-ivory);
  border: 1px solid #efe3cd;
  border-radius: 16px;
  padding: 22px 20px;
  box-shadow: var(--jx-shadow-soft);
}
.jx-contact-ic {
  flex: 0 0 52px; width: 52px; height: 52px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: #f6ecd9; color: var(--jx-gold);
  font-size: 20px;
}
.jx-contact-item h4 { font-size: 17px; margin-bottom: 4px; }
.jx-contact-item p { font-size: 14.5px; color: var(--jx-ink-soft); line-height: 1.5; }
.jx-contact-form {
  background: var(--jx-ivory);
  border: 1px solid #efe3cd;
  border-radius: 20px;
  padding: 30px 28px;
  box-shadow: var(--jx-shadow-soft);
}
.jx-field { margin-bottom: 16px; }
.jx-field label { display: block; font-size: 13.5px; font-weight: 500; color: var(--jx-ink); margin-bottom: 7px; }
.jx-field input, .jx-field textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid var(--jx-line);
  border-radius: 10px;
  background: var(--jx-white);
  font-family: var(--jx-sans);
  font-size: 14.5px;
  color: var(--jx-ink);
  outline: none;
  transition: border-color .25s;
}
.jx-field input:focus, .jx-field textarea:focus { border-color: var(--jx-gold-soft); }
.jx-field textarea { resize: vertical; min-height: 120px; }
.jx-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

@media (max-width: 1100px) {
  .jx-prod-grid { grid-template-columns: repeat(2, 1fr); }
  .jx-blog-grid { grid-template-columns: repeat(2, 1fr); }
  .jx-about-split, .jx-contact-grid { grid-template-columns: 1fr; gap: 30px; }
}
@media (max-width: 680px) {
  .jx-prod-grid, .jx-blog-grid { grid-template-columns: 1fr; }
  .jx-form-row { grid-template-columns: 1fr; }
  .jx-page-hero::before, .jx-page-hero::after { display: none; }
}
