/* ============================================================
   PREMIUM REDESIGN (HERO & VIDEO PORTFOLIO)
   ============================================================ */

/* ---------- PREMIUM HERO ---------- */
.hero-premium {
  position: relative;
  padding: 145px 0 clamp(24px, 3vw, 40px);
  background-color: var(--bg);
  overflow: hidden;
  z-index: 1;
}

/* Soft glowing orbs in the background */
.hero-premium__bg-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  z-index: -1;
  opacity: 0.6;
  animation: floatOrb 8s infinite alternate ease-in-out;
}
.hero-premium__bg-glow--1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(212,176,76,0.15) 0%, rgba(212,176,76,0) 70%);
  top: -10%; left: -5%;
}
.hero-premium__bg-glow--2 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(168,197,184,0.2) 0%, rgba(168,197,184,0) 70%);
  bottom: -20%; right: -10%;
  animation-delay: -4s;
}

@keyframes floatOrb {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(30px, -50px) scale(1.05); }
}

.hero-premium__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.hero-premium__badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 16px;
  background: rgba(212, 176, 76, 0.1);
  border: 1px solid rgba(212, 176, 76, 0.3);
  border-radius: 100px;
  font-size: 13px; font-weight: 600;
  color: var(--green-deep);
  margin-bottom: 24px;
  backdrop-filter: blur(8px);
}
.pulse-dot {
  width: 8px; height: 8px;
  background-color: var(--green);
  border-radius: 50%;
  position: relative;
}
.pulse-dot::after {
  content: ""; position: absolute; inset: -4px;
  border-radius: 50%; border: 2px solid var(--green);
  opacity: 0;
  animation: pulseDot 2s infinite cubic-bezier(0.2, 0.8, 0.2, 1);
}
@keyframes pulseDot {
  0% { transform: scale(0.5); opacity: 1; }
  100% { transform: scale(1.5); opacity: 0; }
}

.hero-premium__title {
  font-family: var(--serif);
  font-weight: 350;
  font-size: clamp(3rem, 5.5vw, 4.8rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 28px;
}
.hero-premium__title em {
  font-style: italic; color: var(--green);
  position: relative; display: inline-block;
}
.hero-premium__title em::after {
  content: ""; position: absolute; bottom: 8px; left: 0; width: 100%; height: 3px;
  background: var(--green); opacity: 0.3; border-radius: 2px;
}
.hero-premium__line { display: block; }

.hero-premium__sub {
  font-size: clamp(1.05rem, 1.4vw, 1.15rem);
  color: var(--ink-soft);
  max-width: 540px;
  margin-bottom: 40px;
  line-height: 1.6;
}

.hero-premium__actions {
  display: flex; align-items: center; gap: 24px; flex-wrap: wrap;
  margin-bottom: 50px;
}

.btn-premium {
  display: inline-flex; align-items: center; gap: 14px;
  background: var(--ink); color: #fff;
  padding: 14px 20px 14px 28px;
  border-radius: 100px;
  font-size: 15px; font-weight: 600;
  transition: all 0.4s var(--ease);
  box-shadow: 0 10px 30px -10px rgba(23, 29, 26, 0.4);
}
.btn-premium__icon {
  display: flex; align-items: center; justify-content: center;
  width: 34px; height: 34px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  transition: transform 0.4s var(--ease);
}
.btn-premium:hover {
  background: var(--green-deep);
  transform: translateY(-2px);
  box-shadow: 0 14px 34px -10px rgba(176, 141, 53, 0.5);
}
.btn-premium:hover .btn-premium__icon { transform: translateX(3px); }

.link-premium-text {
  font-size: 15px; font-weight: 600; color: var(--ink);
  display: inline-flex; align-items: center; gap: 6px;
  transition: color 0.3s;
}
.link-premium-text i { transition: transform 0.3s; font-style: normal; }
.link-premium-text:hover { color: var(--green); }
.link-premium-text:hover i { transform: translateX(4px); }

.hero-premium__stats-row {
  display: flex; align-items: center; gap: 28px;
  padding-top: 32px; border-top: 1px solid rgba(23, 29, 26, 0.08);
}
.stat-premium__num {
  font-family: var(--serif); font-size: 26px; font-weight: 400; color: var(--ink);
  line-height: 1.1; margin-bottom: 4px;
}
.stat-premium__label { font-size: 13px; color: var(--muted); font-weight: 500; }
.stat-premium__divider { width: 1px; height: 32px; background: rgba(23, 29, 26, 0.08); }

.hero-premium__visual { position: relative; }
.hero-premium__image-wrapper { position: relative; border-radius: 24px; }
.hero-premium__image-bg {
  position: absolute; inset: 0; top: 10%; bottom: 0;
  background: var(--sand); border-radius: 200px 200px 24px 24px;
  z-index: 0;
}
.hero-premium__person {
  position: relative; z-index: 1; width: 100%; display: block;
  transform: scale(1.05); transform-origin: bottom center;
}

.hero-premium__float {
  position: absolute; z-index: 2;
  background: rgba(255, 255, 255, 0.85); backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.6);
  padding: 14px 20px; border-radius: 16px;
  display: flex; align-items: center; gap: 14px;
  box-shadow: 0 14px 40px -10px rgba(0,0,0,0.08);
  animation: floatElem 6s infinite alternate ease-in-out;
}
.hero-premium__float--1 { bottom: 15%; left: -8%; }
.hero-premium__float--2 { top: 25%; right: -5%; animation-delay: -3s; }

.hero-premium__float .icon { font-size: 24px; }
.hero-premium__float .text { display: flex; flex-direction: column; }
.hero-premium__float .text strong { font-size: 15px; color: var(--ink); line-height: 1.1; }
.hero-premium__float .text span { font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.04em; }

@keyframes floatElem {
  0% { transform: translateY(0px); }
  100% { transform: translateY(-15px); }
}

@media (max-width: 900px) {
  .hero-premium__grid { grid-template-columns: 1fr; }
  .hero-premium__stats-row { flex-wrap: wrap; gap: 20px; }
  .hero-premium__float--1 { left: 0; bottom: 10%; }
  .hero-premium__float--2 { right: 0; top: 15%; }
}


/* ---------- FEATURED FOCUS VIDEO LAYOUT (OPTION A) ---------- */
.video-teaser { padding: clamp(60px, 8vw, 100px) 0; }

.video-portfolio-layout {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: clamp(24px, 3vw, 40px);
  margin-top: 30px;
}

.video-featured { display: flex; flex-direction: column; gap: 24px; }
.video-featured__player {
  position: relative; width: 100%; border-radius: 20px; overflow: hidden;
  box-shadow: 0 24px 60px -20px rgba(0,0,0,0.15);
  background: #000;
}
.video-featured__thumb { width: 100%; aspect-ratio: 16 / 8.5; object-fit: cover; opacity: 0.9; transition: opacity 0.4s; }
.video-featured__player:hover .video-featured__thumb { opacity: 0.7; }
.video-featured__overlay {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; justify-content: center; align-items: center;
  background: linear-gradient(0deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0) 40%);
}
.video-featured__iframe-state {
  position: absolute; inset: 0; width: 100%; height: 100%;
}
.video-featured__iframe-state iframe {
  width: 100%; height: 100%; border-radius: 20px;
}
.play-btn-large {
  width: 64px; height: 64px; border-radius: 50%;
  background: rgba(255,255,255,0.2); backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.4);
  color: #fff; display: flex; align-items: center; justify-content: center;
  transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
  cursor: pointer;
}
.play-btn-large svg { width: 28px; height: 28px; transform: translateX(2px); }
.video-featured__player:hover .play-btn-large {
  transform: scale(1.1); background: var(--green); border-color: var(--green);
}
.video-featured__meta {
  position: absolute; bottom: 20px; left: 24px; right: 24px;
  display: flex; justify-content: space-between; align-items: flex-end;
}
.video-featured__meta .tag {
  background: var(--green); color: #fff; font-size: 11px; font-weight: 700;
  padding: 4px 10px; border-radius: 6px; letter-spacing: 0.05em; text-transform: uppercase;
}
.video-featured__meta .duration {
  background: rgba(0,0,0,0.6); color: #fff; font-size: 12px; font-weight: 600;
  padding: 4px 10px; border-radius: 6px; backdrop-filter: blur(4px);
}

.video-featured__info h3 { font-family: var(--serif); font-size: 24px; color: var(--ink); margin-bottom: 6px; line-height: 1.25; }
.video-featured__info p { font-size: 14px; color: var(--muted); font-weight: 500; margin-bottom: 16px; }
.video-featured__info .desc { font-size: 15px; color: var(--ink-soft); line-height: 1.6; font-weight: 400; max-width: 90%; }

.video-playlist {
  background: #fff; border-radius: 20px; padding: 20px;
  box-shadow: 0 10px 40px -10px rgba(0,0,0,0.05);
  display: flex; flex-direction: column;
  max-height: 520px;
}
.video-playlist__header { margin-bottom: 20px; padding-bottom: 16px; border-bottom: 1px solid rgba(0,0,0,0.06); }
.video-playlist__header h4 { font-family: var(--sans); font-size: 16px; font-weight: 700; color: var(--ink); text-transform: uppercase; letter-spacing: 0.05em; }

.video-playlist__scroll { display: flex; flex-direction: column; gap: 16px; overflow-y: auto; padding-right: 8px; }
.video-playlist__scroll::-webkit-scrollbar { width: 6px; }
.video-playlist__scroll::-webkit-scrollbar-thumb { background: rgba(0,0,0,0.1); border-radius: 10px; }

.playlist-item {
  display: grid; grid-template-columns: 120px 1fr; gap: 14px; align-items: flex-start;
  padding: 10px; border-radius: 12px; transition: background 0.3s; text-decoration: none;
}
.playlist-item:hover { background: rgba(0,0,0,0.03); }
.playlist-item.active { background: rgba(212,176,76,0.08); }

.playlist-item__thumb { position: relative; border-radius: 10px; overflow: hidden; }
.playlist-item__thumb img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; transition: transform 0.5s; }
.playlist-item:hover .playlist-item__thumb img { transform: scale(1.05); }

.playlist-item__time {
  position: absolute; bottom: 6px; right: 6px;
  background: rgba(0,0,0,0.75); color: #fff; font-size: 10px; font-weight: 600;
  padding: 2px 6px; border-radius: 4px; z-index: 2;
}
.playlist-item__play {
  position: absolute; inset: 0; background: rgba(0,0,0,0.3);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 12px; opacity: 0; transition: opacity 0.3s; z-index: 3;
}
.playlist-item:hover .playlist-item__play { opacity: 1; }

.playlist-item__playing-icon {
  position: absolute; inset: 0; background: rgba(0,0,0,0.5);
  display: flex; align-items: center; justify-content: center; gap: 4px; z-index: 3;
}
.playlist-item__playing-icon span {
  display: block; width: 4px; height: 12px; background: var(--green); border-radius: 2px;
  animation: equalize 1s infinite alternate;
}
.playlist-item__playing-icon span:nth-child(2) { animation-delay: 0.3s; }
.playlist-item__playing-icon span:nth-child(3) { animation-delay: 0.6s; }

@keyframes equalize {
  0% { height: 4px; }
  100% { height: 16px; }
}

.playlist-item__info { padding-top: 4px; }
.playlist-item__info h5 {
  font-family: var(--sans); font-size: 13.5px; font-weight: 600; color: var(--ink);
  line-height: 1.35; margin-bottom: 4px;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.playlist-item.active .playlist-item__info h5 { color: var(--green-deep); }
.playlist-item__info p { font-size: 12px; color: var(--muted); font-weight: 500; }

@media (max-width: 900px) {
  .video-portfolio-layout { grid-template-columns: 1fr; }
  .video-playlist { max-height: none; padding: 16px; }
  .playlist-item { grid-template-columns: 110px 1fr; }
}

/* ---------- 3-CARD TESTIMONIALS ---------- */
.testi-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.testi-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  border-radius: 20px;
  padding: 36px 30px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), background 0.4s;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.testi-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.15);
}

.testi-card__icon {
  font-family: var(--serif);
  font-size: 72px;
  color: rgba(255, 255, 255, 0.4);
  line-height: 0.8;
  margin-bottom: 8px;
}

.testi-card blockquote {
  font-family: var(--serif);
  font-size: 17px;
  color: #fff;
  line-height: 1.6;
  flex-grow: 1;
  margin-bottom: 24px;
  font-style: italic;
}

.testi-card figcaption {
  display: flex;
  flex-direction: column;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.testi-card figcaption strong {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.03em;
}

.testi-card figcaption span {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 4px;
}

@media (max-width: 900px) {
  .testi-cards { grid-template-columns: 1fr; }
}

/* ---------- PREMIUM FOOTER ---------- */
.footer-premium {
  background: #ffffff;
  color: var(--ink);
  padding: 100px 0 0;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.footer-premium__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 60px;
  padding-bottom: 60px;
}

.footer-premium__col--brand {
  display: flex;
  flex-direction: column;
}

.footer-premium__logo img {
  max-height: 75px;
  width: auto;
  margin-bottom: 24px;
}

.footer-premium__desc {
  font-size: 14.5px;
  line-height: 1.6;
  color: #4b5563;
  margin-bottom: 30px;
  max-width: 90%;
}

.footer-premium__socials {
  display: flex;
  gap: 16px;
}

.footer-premium__socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.04);
  color: var(--ink);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
}

.footer-premium__socials a:hover {
  background: #cda85f;
  color: #fff;
  transform: translateY(-3px);
}

.footer-premium__col h4 {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 800;
  color: #92753a; /* Darker gold for light background */
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.footer-premium__nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-premium__nav a {
  color: #4b5563;
  text-decoration: none;
  font-size: 15px;
  transition: color 0.3s;
}

.footer-premium__nav a:hover {
  color: #92753a;
}

.footer-premium__col--contact p {
  color: #4b5563;
  font-size: 15px;
  margin-bottom: 12px;
}

.footer-premium__email {
  display: inline-block;
  color: var(--ink);
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  margin-bottom: 24px;
  transition: color 0.3s;
}

.footer-premium__email:hover {
  color: #92753a;
}

.footer-premium__btn {
  display: inline-block;
  background: #cda85f;
  color: #fff;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: var(--sans);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 13px;
  text-decoration: none;
  transition: all 0.3s;
  margin-top: 8px;
}

.footer-premium__btn:hover {
  background: var(--ink);
  color: #fff;
  transform: translateY(-2px);
}

.footer-premium__bottom {
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  padding: 24px 0;
  text-align: center;
}

.footer-premium__bottom p {
  font-size: 13px;
  color: #6b7280;
}

@media (max-width: 900px) {
  .footer-premium__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* ---------- COMPACT BOOKING LAYOUT ---------- */
.booking-compact { padding: 5.5rem 0 4rem; }
.booking-compact__inner {
  display: grid; grid-template-columns: 1fr 1.1fr; gap: 50px; align-items: start;
}
.booking-compact__header { display: flex; align-items: stretch; gap: 24px; margin-bottom: 0; }
.booking-compact__portrait { flex-shrink: 0; display: flex; }
.booking-compact__portrait img { 
  width: 145px; height: 100%; 
  min-height: 160px;
  border-radius: 20px; 
  object-fit: cover; 
  object-position: top center; 
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}
.booking-compact__contact { display: flex; flex-direction: column; justify-content: center; gap: 8px; }
.booking-compact__contact a { font-size: 15px; color: var(--ink); text-decoration: none; font-weight: 600; }
.booking-compact__contact span { font-size: 14px; color: var(--muted); font-weight: 500; }
.booking-compact__contact a:hover { color: #cda85f; }

.booking-compact__steps { margin-top: 28px; padding-top: 24px; border-top: 1px solid rgba(0,0,0,0.08); }
.bstep-compact { display: flex; gap: 20px; margin-bottom: 20px; align-items: flex-start; }
.bstep-compact span { 
  font-family: var(--serif); 
  font-size: 36px; 
  font-style: italic; 
  color: #cda85f; 
  line-height: 0.9; 
  min-width: 26px;
}
.bstep-compact h3 { font-family: var(--sans); font-size: 16px; font-weight: 700; margin-bottom: 4px; color: var(--ink); }
.bstep-compact p { font-size: 13.5px; color: #555; margin: 0; line-height: 1.5; }

.form-compact { background: #fff; padding: 28px 34px; border-radius: 20px; box-shadow: 0 20px 40px rgba(0,0,0,0.08); }
.form-compact .contact__form-title { font-family: var(--serif); font-size: 26px; margin-bottom: 18px; color: var(--ink); }
.form-compact .form__row { gap: 16px; margin-bottom: 14px; display: grid; grid-template-columns: 1fr 1fr; }
.form-compact .form__field { margin-bottom: 14px; }
.form-compact .form__field label { font-size: 11px; margin-bottom: 4px; text-transform: uppercase; letter-spacing: 0.15em; color: var(--muted); font-weight: 700; display: block; }
.form-compact input, .form-compact select, .form-compact textarea { width: 100%; padding: 6px 0; border: none; border-bottom: 1px solid #e5e7eb; border-radius: 0; font-size: 14.5px; background: transparent; transition: border-color 0.3s; color: var(--ink); }
.form-compact input:focus, .form-compact select:focus, .form-compact textarea:focus { border-bottom-color: var(--ink); outline: none; }
.form-compact textarea { resize: vertical; }
.form-compact .btn { margin-top: 12px; padding: 13px; width: 100%; border-radius: 30px; }

@media (max-width: 900px) {
  .booking-compact__inner { grid-template-columns: 1fr; gap: 40px; }
  .form-compact { padding: 24px; }
}

/* ============================================================
   REFERENCE HEADER & HERO DESIGN SYSTEM (REM UNITS: 10px = 1rem)
   ============================================================ */

:root {
  --ref-gold: #B38838;
  --ref-gold-dark: #966F29;
  --ref-gold-light: #F8F4EB;
  --ref-bg-light: #FAF8F5;
  --ref-text-dark: #222222;
  --ref-text-muted: #555555;
  --ref-border-light: #EBE5DB;
}

/* Header Styles */
.header-ref {
  width: 100%;
  background: #ffffff;
  border-bottom: 0.1rem solid rgba(0, 0, 0, 0.06);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 1.4rem 0;
  box-shadow: 0 0.2rem 1rem rgba(0, 0, 0, 0.02);
}

.header-ref__container {
  max-width: 150rem;
  margin: 0 auto;
  padding: 0 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Brand Logo */
.header-ref__brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  margin-right: 1.5rem;
}

.header-ref__logo-img {
  height: 4.6rem;
  width: auto;
  max-width: 22rem;
  object-fit: contain;
  display: block;
}

/* Nav Menu */
.header-ref__nav {
  display: flex;
  align-items: center;
  gap: 1.8rem;
}

.header-ref__link {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.32rem;
  font-weight: 500;
  color: #333333;
  text-decoration: none;
  position: relative;
  padding: 0.6rem 0;
  white-space: nowrap;
  transition: color 0.25s ease;
}

.header-ref__link:hover {
  color: var(--ref-gold);
}

.header-ref__link.active {
  color: var(--ref-gold);
  font-weight: 600;
}

.header-ref__link.active::after {
  content: '';
  position: absolute;
  bottom: -0.2rem;
  left: 0;
  width: 100%;
  height: 0.2rem;
  background: var(--ref-gold);
  border-radius: 0.1rem;
}

/* Header Actions Container */
.header-ref__actions {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}

/* Top Right Connect Button */
.btn-ref-connect {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1.1rem 2.6rem;
  background: #aa783c;
  border: none;
  border-radius: 1rem;
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
  font-size: 1.35rem;
  font-weight: 600;
  color: #FFFFFF;
  text-decoration: none;
  transition: all 0.25s ease;
  box-shadow: 0 0.6rem 1.8rem rgba(170, 120, 60, 0.28);
  white-space: nowrap;
}

.btn-ref-connect:hover {
  background: #966832;
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 0.9rem 2.4rem rgba(170, 120, 60, 0.38);
}

.header-ref__toggle {
  display: none;
  background: #f7f4ee;
  border: 1px solid rgba(170, 120, 60, 0.25);
  color: #aa783c;
  cursor: pointer;
  padding: 0.8rem;
  border-radius: 0.8rem;
  transition: all 0.25s ease;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.header-ref__toggle:hover,
.header-ref__toggle.active {
  background: #aa783c;
  color: #ffffff;
  border-color: #aa783c;
}

/* Hero Section Styles (Fits Reference Image 0 Layout + Original Fonts & Colors) */
.hero-ref {
  position: relative;
  width: 100%;
  min-height: clamp(500px, 80vh, 720px);
  background: #FAF8F5;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hero-ref__bg-wrapper {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-ref__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 85% 20%;
}

.hero-ref__container {
  position: relative;
  z-index: 5;
  max-width: 1350px;
  margin: 0 auto;
  padding: 10px 32px 40px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex: 1;
}

.hero-ref__content {
  max-width: 520px;
  padding-top: 10px;
}

.hero-ref__title {
  display: flex;
  flex-direction: column;
  margin-bottom: 24px;
}

.hero-ref__title-top {
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
  font-weight: 300;
  font-size: clamp(2.4rem, 3.2vw, 3.8rem);
  line-height: 1.15;
  color: #222222;
  letter-spacing: -0.01em;
}

.hero-ref__title-main {
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
  font-weight: 400;
  font-size: clamp(3.2rem, 4.2vw, 5.2rem);
  line-height: 1.1;
  color: #1A202C;
  margin: 4px 0;
  letter-spacing: -0.02em;
}

.hero-ref__growth {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-style: italic;
  font-size: clamp(4.6rem, 6vw, 7.2rem);
  background: linear-gradient(
    110deg,
    #aa783c 20%,
    #d4a362 40%,
    #ffe79a 50%,
    #d4a362 60%,
    #aa783c 80%
  );
  background-size: 200% auto;
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  animation: text-shine-gold 4s linear infinite;
  display: inline-block;
  padding-right: 0.15em;
  padding-bottom: 0.15em;
  margin-bottom: -0.15em;
}

@keyframes text-shine-gold {
  to {
    background-position: -200% center;
  }
}

.hero-ref__title-sub {
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
  font-weight: 600;
  font-size: clamp(1.4rem, 1.8vw, 2rem);
  line-height: 1.4;
  color: #111827;
  margin-top: 8px;
  word-spacing: 0.1em;
  letter-spacing: 0.01em;
  display: block;
}

.hero-ref__sub {
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
  font-size: clamp(1.4rem, 1.6vw, 1.8rem);
  line-height: 1.6;
  color: #111827;
  font-weight: 600;
  margin-top: 16px;
  margin-bottom: 28px;
  max-width: 520px;
  word-spacing: 0.05em;
  letter-spacing: 0.01em;
}

.hero-ref__actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.btn-ref-gold-filled {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 2.4rem;
  background: var(--ref-gold);
  color: #ffffff;
  border-radius: 0.8rem;
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 0.4rem 1.6rem rgba(179, 136, 56, 0.28);
}

.btn-ref-gold-filled:hover {
  background: var(--ref-gold-dark);
  color: #ffffff;
  transform: translateY(-0.2rem);
  box-shadow: 0 0.6rem 2rem rgba(150, 111, 41, 0.35);
}

.btn-ref-gold-outline {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 2.4rem;
  background: rgba(255, 255, 255, 0.9);
  color: var(--ref-gold-dark);
  border: 0.15rem solid var(--ref-gold);
  border-radius: 0.8rem;
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 0.2rem 0.8rem rgba(0, 0, 0, 0.06);
  backdrop-filter: blur(4px);
}

.btn-ref-gold-outline:hover {
  background: var(--ref-gold);
  color: #ffffff;
  transform: translateY(-0.2rem);
}

/* Bottom Right Author Overlay Text */
.hero-ref__author-overlay-ref {
  position: absolute;
  right: 40px;
  bottom: 28px;
  z-index: 10;
  text-align: left;
  border-left: 2px solid var(--ref-gold, #b38838);
  padding-left: 16px;
}

.hero-ref__author-name-gold {
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
  font-size: clamp(2.4rem, 3vw, 3.4rem);
  font-weight: 400;
  margin-bottom: 6px;
  line-height: 1.1;
  background: linear-gradient(110deg, #966F29 0%, #D4A017 25%, #FFF0AA 50%, #E2B23B 75%, #966F29 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: goldTextShine 3.5s linear infinite;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.7));
}

@keyframes goldTextShine {
  0% {
    background-position: 0% center;
  }
  100% {
    background-position: 200% center;
  }
}

.hero-ref__author-roles p {
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
  font-size: clamp(1.3rem, 1.4vw, 1.55rem);
  font-weight: 300;
  color: #FFFFFF;
  line-height: 1.4;
  margin: 0 0 2px 0;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.8);
}

/* Bottom Left Light Theme Stats Banner Strip */
.hero-ref__stats-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.96);
  padding: 14px 32px;
  width: fit-content;
  max-width: 100%;
  display: flex;
  align-items: center;
  gap: 24px;
  border-top-right-radius: 12px;
  border-top: 1px solid rgba(170, 120, 60, 0.25);
  border-right: 1px solid rgba(170, 120, 60, 0.25);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
}

.hero-stat-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #1A202C;
}

.hero-stat-item__icon {
  color: var(--ref-gold, #aa783c);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-stat-item__text {
  display: flex;
  flex-direction: column;
}

.stat-big-val {
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: #1A202C;
  line-height: 1;
}

.hero-stat-item__text span {
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  color: #5C554E;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  line-height: 1.25;
}

.hero-stat-sep {
  width: 1px;
  height: 32px;
  background: rgba(170, 120, 60, 0.25);
}

/* Responsive Media Queries for Header & Navigation */
@media (max-width: 1024px) {
  .header-ref__nav {
    display: none;
  }
  .header-ref__toggle {
    display: flex;
  }
  .header-ref__container {
    padding: 0 2.4rem;
  }
  .hero-ref {
    height: auto;
    min-height: 52rem;
    max-height: none;
  }
  .hero-ref__bg-img {
    object-position: 75% 0%;
  }
  .hero-ref__bg-overlay {
    background: linear-gradient(
      180deg, 
      rgba(253, 251, 247, 0.78) 0%, 
      rgba(253, 251, 247, 0.6) 35%, 
      rgba(253, 251, 247, 0.35) 70%,
      rgba(253, 251, 247, 0.15) 100%
    );
  }
}

@media (max-width: 768px) {
  .header-ref {
    padding: 1rem 0;
  }
  .header-ref__container {
    padding: 0 1.6rem;
  }
  .header-ref__logo-img {
    height: 3.8rem;
    max-width: 17rem;
  }
  .btn-ref-connect {
    padding: 0.8rem 1.6rem;
    font-size: 1.25rem;
    border-radius: 0.8rem;
  }
}

@media (max-width: 540px) {
  .header-ref__logo-img {
    height: 3.4rem;
    max-width: 14.5rem;
  }
  /* On small mobile screens, hide the header's "Let's Connect" button to avoid crowding with logo, 
     since "Let's Connect" is prominently featured in the open mobile drawer menu */
  .header-ref__actions .btn-ref-connect {
    display: none;
  }
  .header-ref__actions {
    gap: 0;
  }
}

@media (max-width: 1024px) {
  .hero-ref {
    min-height: auto;
  }
  .hero-ref__container {
    flex-direction: column;
  }
  .hero-ref__stats-bar {
    max-width: 100%;
    width: 100%;
    flex-wrap: wrap;
    justify-content: space-around;
    padding: 12px 16px;
    gap: 12px;
  }
  .hero-ref__author-overlay-ref {
    position: relative;
    right: auto;
    bottom: auto;
    margin-top: 20px;
    background: rgba(0, 0, 0, 0.4);
    padding: 16px 20px;
    border-radius: 8px;
    backdrop-filter: blur(4px);
  }
  /* Tablet still overlays the copy on the photo — lay a cream scrim over it
     so the headline keeps its contrast */
  .hero-ref__bg-wrapper::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
      180deg,
      rgba(250, 248, 245, 0.92) 0%,
      rgba(250, 248, 245, 0.72) 45%,
      rgba(250, 248, 245, 0.3) 100%
    );
    pointer-events: none;
    z-index: 2;
  }
  .hero-ref__bottom-cards {
    flex-direction: column;
    align-items: stretch;
    gap: 1.8rem;
    margin-top: 2.8rem;
  }
  .hero-ref__features {
    width: 100%;
    justify-content: space-between;
  }
  .hero-ref__author-overlay {
    max-width: 100%;
    width: 100%;
  }
  .testimonials-top-layout {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }
  .testimonial-card-ref {
    flex: 0 0 calc((100% - 2rem) / 2);
    max-width: calc((100% - 2rem) / 2);
    min-width: calc((100% - 2rem) / 2);
  }
  .blog-layout-2col-ref {
    grid-template-columns: 1fr;
    gap: 3.2rem;
  }
  .insights-5cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
  .insights-bottom-banner-ref {
    flex-direction: column;
    align-items: flex-start;
    padding: 3rem 2.4rem;
    gap: 2.4rem;
  }
  .banner-vert-divider {
    display: none;
  }
  .banner-ref-cards-stack {
    display: none;
  }
}

@media (max-width: 768px) {
  .hero-ref {
    min-height: auto;
    height: auto;
    position: relative;
    padding-top: 0;
    padding-bottom: 0;
    background: #FAF8F5;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
  }
  .hero-ref__bg-wrapper {
    position: relative;
    inset: auto;
    order: 1;
    width: 100%;
    height: clamp(300px, 76vw, 380px);
    z-index: 1;
    overflow: hidden;
  }
  /* The photo's lower-left is bright (wall, floor, chair), so the name block
     needs a real gradient band under it — a light scrim leaves it unreadable. */
  .hero-ref__bg-wrapper::after {
    content: '';
    position: absolute;
    inset: auto 0 0 0;
    height: 62%;
    background: linear-gradient(
      180deg,
      rgba(8, 13, 24, 0) 0%,
      rgba(8, 13, 24, 0.3) 40%,
      rgba(8, 13, 24, 0.68) 72%,
      rgba(8, 13, 24, 0.88) 100%
    );
    pointer-events: none;
    z-index: 2;
  }
  .hero-ref__bg-wrapper picture {
    width: 100%;
    height: 100%;
    display: block;
  }
  .hero-ref__bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* he sits on the right of the 16:9 frame — pull the crop across so he is
       not clipped, and the empty office side is left free for the name block */
    object-position: 74% center;
    filter: none;
    transform: none;
  }
  .hero-ref__author-overlay-ref {
    position: absolute !important;
    bottom: 18px !important;
    left: 20px !important;
    right: 20px !important;
    z-index: 10 !important;
    background: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    padding: 1px 0 1px 14px !important;
    border-radius: 0 !important;
    border-left: 2px solid var(--ref-gold, #aa783c) !important;
    width: auto !important;
    max-width: 100% !important;
    box-shadow: none !important;
    text-align: left !important;
  }
  .hero-ref__author-name-gold {
    font-size: 2.5rem !important;
    margin-bottom: 7px !important;
    line-height: 1.02 !important;
    letter-spacing: -0.005em !important;
    /* the desktop gradient dips to #966F29, which loses contrast against the
       dark scrim mid-animation — keep the shine, raise the floor.
       background-image, not the shorthand: the shorthand would reset
       background-clip and paint a solid gold box instead of the glyphs. */
    background-image: linear-gradient(
      110deg,
      #D9A441 0%,
      #F4D48B 30%,
      #FFF6D8 50%,
      #EFC873 70%,
      #D9A441 100%
    ) !important;
    background-size: 200% auto !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.55)) !important;
    text-shadow: none !important;
  }
  .hero-ref__author-roles p {
    font-size: 1.05rem !important;
    font-weight: 500 !important;
    color: rgba(255, 255, 255, 0.9) !important;
    line-height: 1.75 !important;
    margin: 0 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.12em !important;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5) !important;
  }
  .hero-ref__container {
    order: 2;
    padding: 24px 20px 22px;
    width: 100%;
    position: relative;
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }
  .hero-ref__content {
    max-width: 100%;
    padding: 0;
    background: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    margin-bottom: 0;
  }
  .hero-ref__title {
    margin-bottom: 12px;
  }
  .hero-ref__title-top {
    font-size: 2.4rem !important;
    line-height: 1.2 !important;
    color: #0F172A !important;
    font-weight: 500 !important;
    text-shadow: none !important;
  }
  .hero-ref__title-main {
    font-size: 3.2rem !important;
    line-height: 1.15 !important;
    margin: 4px 0 !important;
    color: #0F172A !important;
    font-weight: 600 !important;
    text-shadow: none !important;
  }
  .hero-ref__growth {
    font-size: 4.4rem !important;
    color: #AA783C !important;
    text-shadow: none !important;
  }
  .hero-ref__title-sub {
    font-size: 1.45rem !important;
    line-height: 1.35 !important;
    color: #1E293B !important;
    margin-top: 6px !important;
    font-weight: 700 !important;
    text-shadow: none !important;
  }
  .hero-ref__sub {
    display: block !important;
    font-size: 1.3rem !important;
    line-height: 1.55 !important;
    color: #334155 !important;
    font-weight: 500 !important;
    margin-top: 12px !important;
    margin-bottom: 0 !important;
    max-width: 100% !important;
    text-shadow: none !important;
  }
  .hero-ref__actions {
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 12px !important;
    width: 100% !important;
    max-width: 340px !important;
    margin-top: 20px !important;
    margin-bottom: 0 !important;
  }
  .btn-ref-gold-filled {
    width: 100% !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    padding: 1.1rem 2rem !important;
    font-size: 1.35rem !important;
    font-weight: 500 !important;
    border-radius: 0.8rem !important;
    gap: 0.8rem !important;
    box-sizing: border-box !important;
    box-shadow: 0 4px 14px rgba(179, 136, 56, 0.28) !important;
  }
  .btn-ref-gold-outline {
    width: 100% !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    padding: 1.1rem 2rem !important;
    font-size: 1.35rem !important;
    font-weight: 500 !important;
    border-radius: 0.8rem !important;
    gap: 0.8rem !important;
    background: rgba(255, 255, 255, 0.92) !important;
    border: 1.5px solid var(--ref-gold, #aa783c) !important;
    box-sizing: border-box !important;
  }
  .btn-ref-gold-filled svg,
  .btn-ref-gold-outline svg {
    width: 1.6rem !important;
    height: 1.6rem !important;
    flex-shrink: 0 !important;
  }
  .hero-ref__stats-bar {
    position: relative !important;
    order: 3 !important;
    bottom: 0 !important;
    left: 0 !important;
    z-index: 6 !important;
    width: 100% !important;
    max-width: 100% !important;
    /* sits after the copy panel now, not over the photo — no overlap pull */
    margin-top: 6px !important;
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    padding: 0 !important;
    gap: 0 !important;
    background: rgba(255, 255, 255, 0.98) !important;
    border-top-left-radius: 18px !important;
    border-top-right-radius: 18px !important;
    border-bottom-left-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
    border: 1px solid rgba(170, 120, 60, 0.2) !important;
    border-bottom: none !important;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.06) !important;
    overflow: hidden !important;
  }
  .hero-stat-sep {
    display: none !important;
  }
  .hero-stat-item {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    padding: 12px 14px !important;
    box-sizing: border-box !important;
  }
  .hero-stat-item:nth-child(1) {
    border-right: 1px solid rgba(170, 120, 60, 0.15) !important;
    border-bottom: 1px solid rgba(170, 120, 60, 0.15) !important;
  }
  .hero-stat-item:nth-child(3) {
    border-bottom: 1px solid rgba(170, 120, 60, 0.15) !important;
  }
  .hero-stat-item:nth-child(5) {
    border-right: 1px solid rgba(170, 120, 60, 0.15) !important;
  }
  .hero-stat-item__icon {
    color: var(--ref-gold, #aa783c) !important;
    flex-shrink: 0 !important;
  }
  .hero-stat-item__icon svg {
    width: 2.2rem !important;
    height: 2.2rem !important;
  }
  .stat-big-val {
    font-size: 1.5rem !important;
    font-weight: 700 !important;
    color: #1A202C !important;
    line-height: 1.1 !important;
  }
  .hero-stat-item__text span {
    font-size: 0.8rem !important;
    font-weight: 500 !important;
    color: #5C554E !important;
    line-height: 1.2 !important;
    letter-spacing: 0.02em !important;
  }
  .hero-ref__features {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
    justify-content: space-between !important;
    width: 100% !important;
    max-width: 100% !important;
    padding: 1.2rem 1rem !important;
    gap: 0.6rem !important;
  }
  .hero-feature-item {
    display: flex !important;
    align-items: center !important;
    gap: 0.5rem !important;
    flex: 1 1 auto !important;
  }
  .hero-feature-item__icon svg {
    width: 1.8rem !important;
    height: 1.8rem !important;
    flex-shrink: 0 !important;
  }
  .hero-feature-item__text strong {
    font-size: clamp(1rem, 2.8vw, 1.2rem) !important;
    white-space: nowrap !important;
    line-height: 1.1 !important;
  }
  .hero-feature-item__text span {
    font-size: clamp(0.9rem, 2.5vw, 1.05rem) !important;
    white-space: nowrap !important;
    line-height: 1.1 !important;
  }
  .hero-feature-item__divider {
    display: block !important;
    width: 1px !important;
    height: 2.4rem !important;
    background: #E5E0D8 !important;
    flex-shrink: 0 !important;
  }
  .testimonials-slider-track {
    gap: 1.6rem;
  }
  .testimonial-card-ref {
    flex: 0 0 100%;
    max-width: 100%;
    min-width: 100%;
    height: auto;
    min-height: 24rem;
    padding: 2.4rem 2rem;
    box-shadow: 0 0.8rem 2.4rem rgba(0, 0, 0, 0.06);
  }
  .heading-testimonials-ref {
    font-size: clamp(2.8rem, 6vw, 3.6rem);
  }
  .btn-testimonials-gold {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 640px) {
  .insights-5cards-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .heading-blog-ref-new {
    font-size: clamp(3rem, 7vw, 4rem);
  }
  .text-blog-desc-new {
    font-size: 1.35rem;
    margin-bottom: 2.4rem;
  }
  .btn-insights-gold-pill {
    width: 100%;
    justify-content: center;
  }
  .featured-insight-card-dark {
    min-height: auto;
  }
  .featured-card-inner {
    padding: 3rem 2rem;
    flex-direction: column;
    gap: 2rem;
  }
  .featured-title-serif {
    font-size: clamp(2.4rem, 6.5vw, 3.2rem);
  }
  .featured-desc-text {
    font-size: 1.35rem;
    margin-bottom: 2rem;
  }
  .banner-ref-left {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.6rem;
  }
  .banner-ref-center-features {
    flex-wrap: wrap;
    gap: 1.6rem;
  }
  .banner-ref-cta-wrap {
    width: 100%;
  }
  .btn-browse-insights-gold-pill {
    width: 100%;
    justify-content: center;
  }
  .hero-ref__container {
    padding: 20px 16px 20px;
  }
}

/* Mobile Dropdown Menu Drawer Styling */
.mobile-nav-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  width: 100%;
  background: #ffffff;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  border-bottom: 3px solid #aa783c;
  box-shadow: 0 1.5rem 3.5rem rgba(0, 0, 0, 0.12);
  padding: 1.8rem 2.4rem 2.4rem;
  flex-direction: column;
  gap: 0.4rem;
  z-index: 1050;
}

.mobile-nav-menu.open {
  display: flex;
  animation: mobileNavSlideDown 0.28s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes mobileNavSlideDown {
  from {
    opacity: 0;
    transform: translateY(-0.8rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.mobile-nav-menu a {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.45rem;
  font-weight: 500;
  color: #222222;
  text-decoration: none;
  padding: 1.1rem 1rem;
  border-radius: 0.6rem;
  transition: all 0.2s ease;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.06);
}

.mobile-nav-menu a:hover,
.mobile-nav-menu a.active {
  color: #aa783c;
  background: #fdfbf7;
  font-weight: 600;
  padding-left: 1.6rem;
}

.mobile-nav-menu a.mobile-nav-cta {
  margin-top: 1rem;
  background: linear-gradient(135deg, #aa783c 0%, #8c5f2d 100%) !important;
  color: #ffffff !important;
  text-align: center;
  justify-content: center;
  font-weight: 600;
  font-size: 1.4rem;
  padding: 1.25rem 2rem;
  border-radius: 0.8rem;
  border-bottom: none !important;
  box-shadow: 0 0.6rem 1.8rem rgba(170, 120, 60, 0.28);
}

.mobile-nav-menu a.mobile-nav-cta:hover {
  background: linear-gradient(135deg, #966832 0%, #795023 100%) !important;
  padding-left: 2rem;
  transform: translateY(-1px);
}

/* ============================================================
   PROGRAMS SECTION (EXACT NEW REFERENCE MATCH)
   ============================================================ */

.programs-section-ref {
  background: linear-gradient(135deg, #fdfbf7 0%, #faf4ec 50%, #f7efe4 100%);
  padding: 10rem 0;
  position: relative;
  overflow: hidden;
}

.programs-bg-arc-ref {
  position: absolute;
  top: -15rem;
  right: -15rem;
  width: 55rem;
  height: 55rem;
  border-radius: 50%;
  border: 1px solid rgba(212, 179, 135, 0.25);
  pointer-events: none;
  z-index: 1;
}

.programs-header-grid-new {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 5rem;
  align-items: flex-start;
  margin-bottom: 5.6rem;
  position: relative;
  z-index: 2;
}

.programs-header-left-new {
  position: relative;
}

.programs-title-new {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 4.8rem;
  font-weight: 600;
  line-height: 1.15;
  color: #211d19;
  margin: 1.2rem 0 1.6rem;
  letter-spacing: -0.02em;
}

.programs-title-gold-italic {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-weight: 600;
  color: #aa783c;
}

.programs-heading-dash {
  width: 3.2rem;
  height: 0.2rem;
  background: #aa783c;
  border-radius: 2px;
}

.programs-header-right-new {
  display: flex;
  align-items: flex-start;
  gap: 1.8rem;
  margin-top: 2rem;
}

.programs-vert-divider {
  padding-top: 0.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.programs-desc-top-new {
  font-size: 1.5rem;
  line-height: 1.65;
  color: #5c554e;
  margin: 0;
  max-width: 42rem;
}

.highlight-gold-text {
  color: #aa783c;
  font-weight: 600;
}

/* 3 Cards Grid */
.programs-grid-new {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.8rem;
  margin-bottom: 6rem;
  position: relative;
  z-index: 2;
}

.program-card-ref-new {
  background: #ffffff;
  border-radius: 2.2rem;
  border: 1px solid #f2e8dc;
  box-shadow: 0 1.2rem 3.5rem rgba(0, 0, 0, 0.04);
  transition: all 0.35s ease;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
}

.program-card-ref-new:hover {
  transform: translateY(-0.6rem);
  box-shadow: 0 1.8rem 4.5rem rgba(179, 131, 71, 0.14);
  border-color: #e8d7c1;
}

/* Organic Wave Image Container */
.program-card-img-wrap-slanted {
  position: relative;
  width: 100%;
  height: 27rem;
  overflow: hidden;
}

.program-card-wave-svg {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 5.8rem;
  z-index: 5;
  pointer-events: none;
}

.program-card-wave-svg svg {
  width: 100%;
  height: 100%;
  display: block;
}

.program-card-img-new {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.45s ease;
}

.program-card-ref-new:hover .program-card-img-new {
  transform: scale(1.06);
}

/* Circular Badge Icon on bottom-left of image overlay */
.program-card-badge-new {
  position: absolute;
  bottom: 2rem;
  left: 2.2rem;
  z-index: 10;
  width: 4.8rem;
  height: 4.8rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #aa783c 0%, #966832 100%);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0.6rem 1.6rem rgba(170, 120, 60, 0.35);
  border: 0.3rem solid rgba(255, 255, 255, 0.85);
}

.program-card-body-new {
  padding: 2.2rem 2.4rem 2.6rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  position: relative;
}

.program-card-num-row {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 0.8rem;
}

.card-num {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 2rem;
  font-weight: 700;
  color: #b38347;
  line-height: 1;
}

.card-num-dash {
  width: 1.8rem;
  height: 0.15rem;
  background-color: #d4b387;
  border-radius: 2px;
}

.program-card-title-new {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 2.3rem;
  font-weight: 600;
  color: #211d19;
  margin-bottom: 1.2rem;
  line-height: 1.25;
}

.program-card-desc-new {
  font-size: 1.35rem;
  color: #5c554e;
  line-height: 1.6;
  margin-bottom: 2.6rem;
  flex: 1;
}

.program-card-footer-new {
  margin-top: auto;
}

.program-card-link-new {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  color: #aa783c;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: 0.08em;
  text-decoration: none;
  transition: all 0.25s ease;
}

.program-card-link-new:hover {
  gap: 1.2rem;
  color: #966832;
}

.card-body-dots-bg {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.8rem;
  opacity: 0.35;
  pointer-events: none;
  z-index: 1;
}

.card-body-dots-bg span {
  width: 0.35rem;
  height: 0.35rem;
  background-color: #d4b387;
  border-radius: 50%;
  display: block;
}

/* Bottom Divider Line with Centered Diamond Badge */
.programs-divider-row-new {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 3.6rem;
  position: relative;
  z-index: 2;
}

.programs-divider-line {
  flex: 1;
  height: 1px;
  background-color: #e8d7c1;
}

.programs-diamond-badge {
  padding: 0 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.programs-footer-btn-new {
  text-align: center;
  position: relative;
  z-index: 2;
}

.btn-programs-pill-gold {
  display: inline-flex;
  align-items: center;
  gap: 1.2rem;
  padding: 1.4rem 3.4rem;
  background: linear-gradient(135deg, #aa783c 0%, #966832 100%);
  color: #FFFFFF;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: 1.4rem;
  letter-spacing: 0.08em;
  border-radius: 99.9rem;
  border: none;
  text-decoration: none;
  transition: all 0.25s ease;
  box-shadow: 0 1rem 2.8rem rgba(170, 120, 60, 0.35);
  cursor: pointer;
}

.btn-programs-pill-gold:hover {
  background: linear-gradient(135deg, #966832 0%, #825826 100%);
  transform: translateY(-2px);
  box-shadow: 0 1.4rem 3.4rem rgba(170, 120, 60, 0.45);
  color: #FFFFFF;
}

@media (max-width: 1024px) {
  .programs-header-grid-new { grid-template-columns: 1fr; gap: 3rem; }
  .programs-grid-new { grid-template-columns: repeat(2, 1fr); gap: 2.4rem; }
}

@media (max-width: 640px) {
  .programs-grid-new { grid-template-columns: 1fr; }
  .programs-title-new { font-size: 3.6rem; }
}
  color: #ffffff;
  border-radius: 0.8rem;
  font-family: 'Inter', sans-serif;
  font-size: 1.45rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 0.4rem 1.6rem rgba(179, 136, 56, 0.25);
}

.btn-programs-gold:hover {
  background: var(--ref-gold-dark);
  transform: translateY(-0.2rem);
  box-shadow: 0 0.6rem 2rem rgba(150, 111, 41, 0.35);
}

@media (max-width: 1024px) {
  .programs-header-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .programs-grid-ref {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .programs-grid-ref {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   DEDICATED CONSULTATION SECTION STYLES
   ============================================================ */
.consultation-section {
  position: relative;
  background-color: #FDFBF7;
  background-image: radial-gradient(circle at 10% 20%, rgba(213, 178, 106, 0.08) 0%, transparent 40%),
                    radial-gradient(circle at 90% 80%, rgba(10, 24, 50, 0.04) 0%, transparent 40%);
  overflow: hidden;
}

.consultation-header-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: flex-end;
  margin-bottom: 5rem;
}

.heading-consultation-ref {
  font-family: 'Cormorant Garamond', serif;
  font-size: 4.6rem;
  font-weight: 600;
  line-height: 1.15;
  color: #0A1832;
  margin-top: 1rem;
  margin-bottom: 1.6rem;
}

.consultation-header-desc {
  font-family: 'Inter', sans-serif;
  font-size: 1.6rem;
  line-height: 1.7;
  color: #4A5568;
  margin-bottom: 2rem;
}

.consultation-header-badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
}

.consultation-badge-item {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.6rem 1.4rem;
  background: #FFFFFF;
  border: 1px solid rgba(170, 120, 60, 0.25);
  border-radius: 99.9rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: #2D3748;
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}

.consultation-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.4rem;
  margin-bottom: 6rem;
}

.consultation-card {
  background: #FFFFFF;
  border-radius: 1.6rem;
  padding: 3rem 2.4rem;
  border: 1px solid rgba(226, 232, 240, 0.9);
  box-shadow: 0 1rem 3rem rgba(11, 30, 51, 0.05);
  display: flex;
  flex-direction: column;
  transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
}

.consultation-card:hover {
  transform: translateY(-6px);
  border-color: rgba(170, 120, 60, 0.45);
  box-shadow: 0 1.8rem 4rem rgba(170, 120, 60, 0.15);
}

.consultation-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
}

.consultation-card-icon {
  width: 5.2rem;
  height: 5.2rem;
  border-radius: 1.2rem;
  background: linear-gradient(135deg, rgba(213, 178, 106, 0.15) 0%, rgba(170, 120, 60, 0.1) 100%);
  color: #aa783c;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.consultation-card:hover .consultation-card-icon {
  background: linear-gradient(135deg, #aa783c 0%, #966832 100%);
  color: #FFFFFF;
}

.consultation-card-tag {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.4rem 1rem;
  background: #F7FAFC;
  color: #aa783c;
  border-radius: 0.6rem;
  border: 1px solid rgba(170, 120, 60, 0.2);
}

.consultation-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.3rem;
  font-weight: 700;
  color: #0A1832;
  line-height: 1.25;
  margin: 0 0 0.6rem;
}

.consultation-card-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 1.3rem;
  color: #aa783c;
  font-weight: 500;
  margin: 0 0 1.4rem;
}

.consultation-card-line {
  height: 2px;
  width: 3.6rem;
  background: #aa783c;
  margin-bottom: 1.6rem;
  border-radius: 2px;
  transition: width 0.3s ease;
}

.consultation-card:hover .consultation-card-line {
  width: 6rem;
}

.consultation-card-text {
  font-family: 'Inter', sans-serif;
  font-size: 1.4rem;
  line-height: 1.6;
  color: #4A5568;
  margin-bottom: 2rem;
  flex: 1;
}

.consultation-card-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2.4rem;
}

.consultation-card-list li {
  font-family: 'Inter', sans-serif;
  font-size: 1.3rem;
  color: #2D3748;
  padding-left: 2rem;
  position: relative;
  margin-bottom: 0.8rem;
}

.consultation-card-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #aa783c;
  font-weight: bold;
}

.consultation-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: #aa783c;
  text-decoration: none;
  margin-top: auto;
  transition: all 0.25s ease;
}

.consultation-card-link:hover {
  color: #0A1832;
  gap: 1.2rem;
}

/* Consultation Process Section */
.consultation-process-wrap {
  background: #FFFFFF;
  border-radius: 2rem;
  padding: 4.5rem 4rem;
  border: 1px solid rgba(226, 232, 240, 0.9);
  box-shadow: 0 1.2rem 3.5rem rgba(11, 30, 51, 0.04);
  margin-bottom: 6rem;
}

.consultation-process-header {
  text-align: center;
  max-width: 65rem;
  margin: 0 auto 4rem;
}

.consultation-process-eyebrow {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #aa783c;
  display: block;
  margin-bottom: 0.8rem;
}

.consultation-process-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.4rem;
  font-weight: 700;
  color: #0A1832;
  margin: 0;
}

.consultation-process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.4rem;
  position: relative;
}

.consultation-step-card {
  background: #FDFBF7;
  border-radius: 1.2rem;
  padding: 2.8rem 2rem;
  border: 1px solid rgba(170, 120, 60, 0.15);
  position: relative;
  transition: transform 0.3s ease;
}

.consultation-step-card:hover {
  transform: translateY(-4px);
}

.step-num-badge {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: #aa783c;
  background: rgba(170, 120, 60, 0.12);
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.6rem;
}

.step-card-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.7rem;
  font-weight: 700;
  color: #0A1832;
  margin: 0 0 1rem;
}

.step-card-desc {
  font-family: 'Inter', sans-serif;
  font-size: 1.35rem;
  line-height: 1.6;
  color: #64748B;
  margin: 0;
}

/* Consultation CTA Banner */
.consultation-cta-box {
  background: linear-gradient(135deg, #0A1832 0%, #061022 100%);
  border-radius: 2rem;
  padding: 4.5rem 5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4rem;
  border: 1px solid rgba(213, 178, 106, 0.3);
  box-shadow: 0 2rem 5rem rgba(10, 24, 50, 0.25);
  position: relative;
  overflow: hidden;
}

.consultation-cta-box::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 40rem;
  height: 40rem;
  background: radial-gradient(circle, rgba(213, 178, 106, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.consultation-cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: #d5b26a;
  margin-bottom: 1.2rem;
}

.consultation-cta-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.6rem;
  font-weight: 600;
  color: #FFFFFF;
  margin: 0 0 1rem;
  line-height: 1.2;
}

.consultation-cta-text {
  font-family: 'Inter', sans-serif;
  font-size: 1.5rem;
  color: #CBD5E0;
  margin: 0;
  max-width: 58rem;
}

.btn-consultation-gold {
  display: inline-flex;
  align-items: center;
  gap: 1.2rem;
  padding: 1.6rem 3.4rem;
  background: linear-gradient(135deg, #aa783c 0%, #966832 100%);
  color: #FFFFFF;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.45rem;
  font-weight: 700;
  border-radius: 99.9rem;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 1rem 3rem rgba(170, 120, 60, 0.4);
  white-space: nowrap;
}

.btn-consultation-gold:hover {
  background: linear-gradient(135deg, #d5b26a 0%, #aa783c 100%);
  transform: translateY(-2px);
  box-shadow: 0 1.4rem 3.6rem rgba(170, 120, 60, 0.55);
  color: #0A1832;
}

/* Responsive Styles for Consultation Section */
@media (max-width: 1200px) {
  .consultation-grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .consultation-process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 992px) {
  .consultation-header-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .consultation-cta-box {
    flex-direction: column;
    text-align: center;
    padding: 3.5rem 3rem;
  }
  .consultation-cta-text {
    max-width: 100%;
  }
}

@media (max-width: 640px) {
  .consultation-grid-4 {
    grid-template-columns: 1fr;
  }
  .consultation-process-grid {
    grid-template-columns: 1fr;
  }
  .heading-consultation-ref {
    font-size: 3.4rem;
  }
  .consultation-process-wrap {
    padding: 3rem 2rem;
  }
  .consultation-process-title {
    font-size: 2.6rem;
  }
  .consultation-cta-title {
    font-size: 2.8rem;
  }
}

/* ============================================================
   GLOBAL VISIBLE LUXURY SCROLLBAR
   ============================================================ */
html {
  scrollbar-width: thin;
  scrollbar-color: #aa783c #faf4eb;
}

/* Chrome / Safari / Edge Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background: #faf4eb;
  border-left: 1px solid #e8d7c1;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #c49557 0%, #aa783c 100%);
  border-radius: 5px;
  border: 2px solid #faf4eb;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #aa783c 0%, #8e622e 100%);
}

/* ============================================================
   FLOATING WHATSAPP TOGGLE BUTTON
   ============================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.whatsapp-float:hover {
  transform: scale(1.08);
}

.whatsapp-float__icon-wrapper {
  width: 58px;
  height: 58px;
  background: #25D366;
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
  position: relative;
}

.whatsapp-float__icon-wrapper::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.4);
  z-index: -1;
  animation: waPulse 2s infinite;
}

@keyframes waPulse {
  0% {
    transform: scale(0.95);
    opacity: 0.85;
  }
  70% {
    transform: scale(1.35);
    opacity: 0;
  }
  100% {
    transform: scale(0.95);
    opacity: 0;
  }
}

.whatsapp-float__tooltip {
  position: absolute;
  right: 70px;
  background: #1A202C;
  color: #FFFFFF;
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 20px;
  white-space: nowrap;
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
  opacity: 0;
  visibility: hidden;
  transform: translateX(10px);
  transition: all 0.3s ease;
  pointer-events: none;
}

.whatsapp-float:hover .whatsapp-float__tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

@media (max-width: 768px) {
  .whatsapp-float {
    bottom: 20px;
    right: 20px;
  }
  .whatsapp-float__icon-wrapper {
    width: 50px;
    height: 50px;
  }
  .whatsapp-float__svg {
    width: 26px;
    height: 26px;
  }
  .whatsapp-float__tooltip {
    display: none;
  }
}

/* ============================================================
   EXECUTIVE ABOUT SECTION PORTRAIT STYLING
   ============================================================ */
.about-arch-dome-dark {
  background: radial-gradient(circle at 50% 25%, #383029 0%, #1f1a16 65%, #120e0c 100%) !important;
  border: 1.5px solid rgba(212, 179, 135, 0.35) !important;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.22), 0 0 30px rgba(170, 120, 60, 0.12) !important;
}

.about-arch-outer-gold {
  border: 1.5px solid rgba(170, 120, 60, 0.5) !important;
  box-shadow: 0 0 25px rgba(170, 120, 60, 0.15) !important;
}

.about-speaker-portrait-img {
  object-fit: cover !important;
  object-position: left center !important;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
}

.about-portrait-stage:hover .about-speaker-portrait-img {
  transform: scale(1.03) !important;
}

.about-sig-card-glass {
  background: rgba(255, 255, 255, 0.95) !important;
  backdrop-filter: blur(12px) !important;
  border: 1px solid rgba(212, 179, 135, 0.35) !important;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12) !important;
}

/* ============================================================
   STICKY FOOTER — no dead space below the footer on short pages
   ============================================================ */
body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

body > main {
  flex: 1 0 auto;
}

body > .site-footer {
  flex-shrink: 0;
}

/* ============================================================
   TESTIMONIALS PAGE (/testimonials) — full endorsement grid.
   Shares tokens with the home testimonials section so both read
   as one system: cream ground, warm gold accents, white cards.
   ============================================================ */
/* A brace mismatch around line 1145 leaves the `@media (max-width: 1024px)` block
   closed early — its 2-cards-per-view rule leaks onto desktop and clips the third
   card — and swallows the `@media (max-width: 768px)` block that follows, so the
   phone rules for the slider never apply at all. Both are re-declared here (last
   declaration in the last stylesheet wins) so the CSS matches the slider JS:
   3 cards per view above 1024px, 2 down to 769px, 1 on phones. Scoped to the
   slider on purpose — moving the stray brace would also revive ~80 lines of
   long-dead layout rules in unrelated sections. */
@media (min-width: 1025px) {
  .testimonial-card-ref {
    flex: 0 0 calc((100% - 3.6rem) / 3);
    max-width: calc((100% - 3.6rem) / 3);
    min-width: calc((100% - 3.6rem) / 3);
  }
}

@media (max-width: 768px) {
  .testimonials-slider-track {
    gap: 1.6rem;
  }
  .testimonial-card-ref {
    flex: 0 0 100%;
    max-width: 100%;
    min-width: 100%;
    height: auto;
    min-height: 24rem;
    padding: 2.4rem 2rem;
  }
  .heading-testimonials-ref {
    font-size: clamp(2.8rem, 6vw, 3.6rem);
  }
  .btn-testimonials-gold {
    width: 100%;
    justify-content: center;
  }
}

.tm-page-section {
  padding: 8rem 0 12rem;
  background: linear-gradient(180deg, #FAF5EE 0%, #f7efe4 100%);
}

.tm-page-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(32rem, 1fr));
  gap: 3rem;
}

.tm-page-card {
  background: #FFFFFF;
  border: 1px solid #f2e8dc;
  border-radius: 1.2rem;
  padding: 3rem 2.5rem;
  box-shadow: 0 0.8rem 2.5rem rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 2rem;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.tm-page-card:hover {
  transform: translateY(-0.4rem);
  box-shadow: 0 1.6rem 4rem rgba(179, 131, 71, 0.12);
  border-color: #e8d7c1;
}

.tm-page-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
}

.tm-page-card__quote {
  font-size: 1.5rem;
  color: #4a453f;
  line-height: 1.7;
  font-style: italic;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.tm-page-card__more {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 1.15rem;
  font-weight: 700;
  color: #aa783c;
  letter-spacing: 0.02em;
}

.tm-page-card__dash {
  width: 3rem;
  height: 2px;
  background-color: #e8d7c1;
  margin: 1rem 0 2rem;
}

.tm-page-card__name {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: #231f1a;
  line-height: 1.25;
}

.tm-page-card__role {
  font-size: 1.3rem;
  color: #666057;
  font-weight: 500;
  margin-top: 0.2rem;
}

.tm-page-card__meta {
  margin-top: 1.6rem;
  padding-top: 1.4rem;
  border-top: 1px dashed #efe3d3;
  font-size: 1.15rem;
  color: #8E8A83;
  line-height: 1.5;
}

/* Closing CTA under the grid */
.tm-page-cta {
  text-align: center;
  margin-top: 7rem;
  padding: 5rem 3rem;
  background: #FFFFFF;
  border: 1px solid #f2e8dc;
  border-radius: 1.6rem;
  box-shadow: 0 0.8rem 2.5rem rgba(0, 0, 0, 0.04);
}

.tm-page-cta__eyebrow {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #aa783c;
  margin-bottom: 1rem;
}

.tm-page-cta__title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 3.2rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: #211d19;
  margin-bottom: 2.6rem;
}

/* Relationship / date line inside the shared detail modal */
.testimonial-modal-relationship {
  font-size: 1.25rem;
  color: #8E8A83;
  margin-bottom: 1.6rem;
}

.testimonial-modal-quote-text p + p {
  margin-top: 1.4rem;
}

@media (max-width: 768px) {
  .tm-page-section {
    padding: 5rem 0 8rem;
  }
  .tm-page-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .tm-page-card {
    padding: 2.4rem 2rem;
  }
  .tm-page-cta {
    margin-top: 4.5rem;
    padding: 3.5rem 2rem;
  }
  .tm-page-cta__title {
    font-size: 2.4rem;
  }
}

/* ============================================================
   PROGRAMS PAGE — CATEGORY GROUPS (1 image : 3 programs per row)
   Markup: resources/views/programs.blade.php
   ============================================================ */
.program-details .pcat {
  margin-bottom: 7rem;
}
.program-details .pcat:last-child {
  margin-bottom: 0;
}

/* ---- Category header ---- */
.pcat__head {
  display: flex;
  align-items: center;
  gap: 2.4rem;
  padding-bottom: 2.4rem;
  margin-bottom: 5rem;
  border-bottom: 1px solid var(--color-primary-border, rgba(170, 120, 60, 0.35));
}
.pcat__num {
  flex-shrink: 0;
  font-family: var(--font-display, inherit);
  font-size: 3.6rem;
  font-weight: 300;
  line-height: 1;
  color: var(--color-primary, #aa783c);
  opacity: 0.55;
}
.pcat__headings {
  flex: 1 1 auto;
  min-width: 0;
}
.pcat__eyebrow {
  margin: 0 0 0.6rem;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-primary, #aa783c);
}
.pcat__title {
  margin: 0;
  font-size: clamp(2.2rem, 3.2vw, 3.2rem);
  font-weight: 600;
  line-height: 1.2;
  color: var(--text-heading, #211d19);
}
.pcat__count {
  flex-shrink: 0;
  padding: 0.7rem 1.6rem;
  border: 1px solid var(--color-primary-border, rgba(170, 120, 60, 0.35));
  border-radius: 999px;
  background: var(--color-primary-light, #faf4ec);
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-primary, #aa783c);
  white-space: nowrap;
}

/* ---- One row = one image + up to three programs ---- */
.prow {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 4.5rem;
  align-items: stretch;
  margin-bottom: 5.5rem;
}
.prow:last-child {
  margin-bottom: 0;
}
.prow--flip .prow__media { order: 2; }
.prow--flip .prow__list  { order: 1; }

.prow__media {
  min-height: 100%;
}
.prow__frame {
  position: relative;
  height: 100%;
  min-height: 38rem;
  overflow: hidden;
  border-radius: 1.6rem;
  box-shadow: 0 24px 60px rgba(33, 29, 25, 0.12);
}
.prow__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.prow__frame:hover img {
  transform: scale(1.04);
}
.prow__frame::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(33, 29, 25, 0.65) 0%, rgba(33, 29, 25, 0) 55%);
  pointer-events: none;
}
.prow__frame-tag {
  position: absolute;
  left: 2.4rem;
  right: 2.4rem;
  bottom: 2.4rem;
  z-index: 2;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #ffffff;
}

/* ---- Program cards stack — stretches so a row of 2 fills the same height ---- */
.prow__list {
  display: grid;
  grid-auto-rows: 1fr;
  gap: 2rem;
}
.pcard {
  display: flex;
  align-items: center;
  gap: 2.4rem;
  padding: 2.6rem 2.8rem;
  background: var(--bg-white, #ffffff);
  border: 1px solid rgba(33, 29, 25, 0.07);
  border-left: 4px solid var(--color-primary, #aa783c);
  border-radius: 1.2rem;
  box-shadow: 0 4px 22px rgba(33, 29, 25, 0.04);
  transition: transform 0.35s ease, box-shadow 0.35s ease, background 0.35s ease;
}
.pcard:hover {
  transform: translateY(-3px);
  background: var(--color-primary-light, #faf4ec);
  box-shadow: 0 18px 44px rgba(33, 29, 25, 0.1);
}
.pcard__num {
  flex-shrink: 0;
  font-size: 1.6rem;
  font-weight: 300;
  line-height: 1;
  color: var(--color-primary, #aa783c);
  opacity: 0.6;
}
.pcard__body {
  flex: 1 1 auto;
  min-width: 0;
}
.pcard__title {
  margin: 0 0 0.7rem;
  font-size: clamp(1.8rem, 2vw, 2.1rem);
  font-weight: 600;
  line-height: 1.3;
  color: var(--text-heading, #211d19);
}
.pcard__title em {
  font-style: italic;
  color: var(--color-primary, #aa783c);
}
.pcard__tagline {
  margin: 0;
  font-size: 1.45rem;
  line-height: 1.55;
  color: var(--text-body, #5c554e);
}
.pcard__link {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-primary, #aa783c);
  text-decoration: none;
  white-space: nowrap;
}
.pcard__link svg {
  transition: transform 0.3s ease;
}
.pcard:hover .pcard__link svg {
  transform: translateX(4px);
}

@media (max-width: 992px) {
  .prow {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .prow--flip .prow__media { order: 0; }
  .prow--flip .prow__list  { order: 1; }
  .prow__frame {
    min-height: 0;
    aspect-ratio: 16 / 9;
  }
}

@media (max-width: 640px) {
  .pcat__head {
    flex-wrap: wrap;
    gap: 1.4rem;
  }
  .pcat__count {
    order: 3;
  }
  .pcard {
    flex-wrap: wrap;
    gap: 1.4rem;
    padding: 2.2rem 2rem;
  }
  .pcard__num {
    order: 1;
  }
  .pcard__link {
    order: 3;
    margin-left: auto;
  }
  .pcard__body {
    order: 2;
    flex: 1 1 100%;
  }
}
