/* ============================================================
   LuminHRT Homepage — lhrt-hp.css
   All selectors namespaced with .lhrt- to avoid conflicts
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&family=Jost:wght@300;400;500;600;700&display=swap');

/* ── Root Variables ─────────────────────────────────────────── */
:root {
  --lhrt-aqua:      #008CB4;
  --lhrt-aqua-dk:   #006B8A;
  --lhrt-aqua-lt:   #EAF6F8;
  --lhrt-cream:     #FAF7F3;
  --lhrt-dark:      #1E293B;
  --lhrt-muted:     #475569;
  --lhrt-border:    #E2E8F0;
  --lhrt-slate:     #334155;
  --lhrt-lavender:  #D1D5F5;
  --lhrt-pink:      #F8A7A7;
  --lhrt-pink-dk:   #e08888;
  --lhrt-gold:      #B08D6A;
  --lhrt-gold-dk:   #8C6E50;
}

/* ── Shared ─────────────────────────────────────────────────── */
.lhrt-section-tag {
  font-family: 'Jost', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--lhrt-pink);
  display: block;
  margin-bottom: 16px;
}
.lhrt-main-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 4vw, 58px);
  font-weight: 600;
  line-height: 1.1;
  color: var(--lhrt-dark);
  margin-bottom: 32px;
}

/* ── Keyframes ──────────────────────────────────────────────── */
@keyframes lhrtFadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes lhrtSlider {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes lhrtSpin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* ═══════════════════════════════════════════════════════════════
   SECTION 1 — HERO
═══════════════════════════════════════════════════════════════ */
.lhrt-hp-hero-wrap { width: 100%; }

.lhrt-hero {
  display: grid;
  grid-template-columns: 50% 50%;
  min-height: 100vh;
  position: relative;
}
.lhrt-hero-img-panel {
  position: relative;
  overflow: hidden;
  min-height: 500px;
}
.lhrt-hero-img-panel img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
}
.lhrt-hero-content-panel {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--lhrt-cream);
}
.lhrt-hero-content-panel::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(234,246,248,0.9) 100%);
  z-index: 1;
}
.lhrt-hero-content-top {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  align-items: center;
  padding: 80px 64px 40px 64px;
}
.lhrt-hero-content-inner { width: 100%; max-width: 580px; }

.lhrt-hero-eyebrow {
  font-family: 'Jost', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--lhrt-aqua);
  display: block;
  margin-bottom: 24px;
  opacity: 0;
  animation: lhrtFadeUp 0.7s ease forwards 0.1s;
}
.lhrt-hero-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(48px, 5.5vw, 84px);
  font-weight: 600;
  line-height: 1.05;
  color: var(--lhrt-dark);
  margin-bottom: 28px;
  opacity: 0;
  animation: lhrtFadeUp 0.7s ease forwards 0.3s;
}
.lhrt-hero-sub {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--lhrt-slate);
  margin-bottom: 44px;
  max-width: 480px;
  opacity: 0;
  animation: lhrtFadeUp 0.7s ease forwards 0.5s;
}
.lhrt-hero-btns {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 360px;
  opacity: 0;
  animation: lhrtFadeUp 0.7s ease forwards 0.7s;
}
.lhrt-btn-primary {
  font-family: 'Jost', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fff;
  background: var(--lhrt-aqua);
  border: none;
  padding: 22px 38px;
  border-radius: 4px;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
  box-shadow: 0 4px 14px rgba(0,140,180,0.2);
}
.lhrt-btn-primary:hover {
  background: var(--lhrt-aqua-dk);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,140,180,0.3);
  color: #fff;
}
.lhrt-hero-highlight-card {
  position: relative;
  z-index: 2;
  background: var(--lhrt-aqua-lt);
  padding: 40px 64px;
  display: flex;
  align-items: center;
  gap: 24px;
  opacity: 0;
  animation: lhrtFadeUp 0.7s ease forwards 0.9s;
  border-top: 1px solid rgba(0,140,180,0.1);
}
.lhrt-highlight-icon-box {
  width: 56px; height: 56px;
  background: #fff;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.lhrt-highlight-icon-box svg { width: 26px; height: 26px; stroke: var(--lhrt-aqua); }
.lhrt-highlight-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px; font-weight: 700;
  color: var(--lhrt-dark);
  display: block; margin-bottom: 4px;
}
.lhrt-highlight-card-text {
  font-size: 14px; color: var(--lhrt-muted);
  line-height: 1.6; display: block;
}

/* Features Strip */
.lhrt-features {
  background: var(--lhrt-dark);
  padding: 56px 64px;
}
.lhrt-features-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 48px;
  max-width: 1200px;
  margin: 0 auto;
}
.lhrt-feature {
  display: flex; align-items: flex-start; gap: 20px;
  padding: 32px; border-radius: 12px;
  transition: background 0.3s;
  cursor: default;
}
.lhrt-feature:hover { background: rgba(255,255,255,0.04); }
.lhrt-feature-icon {
  width: 48px; height: 48px;
  background: rgba(0,140,180,0.15);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: background 0.3s;
}
.lhrt-feature:hover .lhrt-feature-icon { background: rgba(0,140,180,0.25); }
.lhrt-feature-icon svg { width: 22px; height: 22px; stroke: var(--lhrt-aqua); }
.lhrt-feature-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px; font-weight: 700;
  color: #fff; display: block; margin-bottom: 8px;
}
.lhrt-feature-text {
  font-size: 14px; color: rgba(255,255,255,0.55);
  line-height: 1.7; display: block;
}

/* ═══════════════════════════════════════════════════════════════
   SECTION 2 — APPROACH
═══════════════════════════════════════════════════════════════ */
.lhrt-approach-wrapper {
  background: #fff;
  padding: 0;
}
.lhrt-approach-container { padding: 120px 64px; }
.lhrt-approach-grid {
  display: grid;
  grid-template-columns: 45% 55%;
  gap: 80px;
  max-width: 1280px;
  margin: 0 auto;
  align-items: start;
}
.lhrt-approach-visual { position: relative; }
.lhrt-image-wrapper {
  position: relative; border-radius: 16px;
  overflow: hidden; aspect-ratio: 3/4;
  box-shadow: 0 32px 80px rgba(0,0,0,0.12);
}
.lhrt-image-wrapper img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 20%;
  display: block;
}
.lhrt-floating-quote {
  position: absolute;
  bottom: -32px; right: -32px;
  background: #fff;
  border-radius: 16px;
  padding: 32px;
  max-width: 320px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.1);
  border: 1px solid var(--lhrt-border);
}
.lhrt-quote-icon {
  font-family: 'Cormorant Garamond', serif;
  font-size: 64px; line-height: 0.6;
  color: var(--lhrt-pink); margin-bottom: 16px;
}
.lhrt-quote-main {
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px; font-weight: 500; font-style: italic;
  line-height: 1.6; color: var(--lhrt-dark); margin-bottom: 20px;
}
.lhrt-author-box { display: flex; align-items: center; gap: 12px; }
.lhrt-author-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, var(--lhrt-pink), var(--lhrt-lavender));
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px; font-weight: 700; color: #fff; flex-shrink: 0;
}
.lhrt-author-name {
  font-family: 'Jost', sans-serif; font-size: 14px; font-weight: 600;
  color: var(--lhrt-dark); display: block;
}
.lhrt-author-role { font-size: 12px; color: var(--lhrt-muted); display: block; }
.lhrt-approach-content { padding-top: 48px; }
.lhrt-narrative { margin-bottom: 40px; }
.lhrt-narrative p {
  font-size: 17px; line-height: 1.8; color: var(--lhrt-muted);
  margin-bottom: 20px;
}
.lhrt-narrative b { color: var(--lhrt-dark); font-weight: 600; }
.lhrt-approach-cta {
  display: inline-flex; align-items: center; gap: 16px;
  font-family: 'Jost', sans-serif; font-size: 14px; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--lhrt-dark); text-decoration: none;
  position: relative;
}
.lhrt-cta-line {
  width: 48px; height: 2px; background: var(--lhrt-pink);
  transition: width 0.4s ease;
}
.lhrt-approach-cta:hover .lhrt-cta-line { width: 80px; }

/* ═══════════════════════════════════════════════════════════════
   SECTION 3 — PHILOSOPHY
═══════════════════════════════════════════════════════════════ */
.lhrt-philosophy-wrapper {
  background: linear-gradient(135deg, var(--lhrt-cream) 0%, #fff 60%);
  padding: 120px 64px;
}
.lhrt-philosophy-inner {
  display: grid;
  grid-template-columns: 55% 45%;
  gap: 80px;
  max-width: 1280px;
  margin: 0 auto;
  align-items: center;
}
.lhrt-philosophy-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 600; font-style: italic;
  line-height: 1.35; color: var(--lhrt-dark);
  margin-bottom: 32px;
  border-left: 4px solid var(--lhrt-pink);
  padding-left: 32px;
}
.lhrt-philosophy-body p {
  font-size: 17px; line-height: 1.8; color: var(--lhrt-muted);
}
.lhrt-philosophy-image-box {
  border-radius: 20px; overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: 0 32px 80px rgba(0,0,0,0.1);
}
.lhrt-philosophy-image-box img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}

/* ═══════════════════════════════════════════════════════════════
   SECTION 4 — SERVICES
═══════════════════════════════════════════════════════════════ */
.lhrt-services-section { background: #fff; padding: 120px 64px; }
.lhrt-services-inner { max-width: 1280px; margin: 0 auto; }
.lhrt-section-header { text-align: center; margin-bottom: 80px; }
.lhrt-section-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 4vw, 52px); font-weight: 600;
  color: var(--lhrt-dark); margin-bottom: 16px;
}
.lhrt-section-sub {
  font-size: 17px; color: var(--lhrt-muted); line-height: 1.7;
  max-width: 600px; margin: 0 auto;
}
.lhrt-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.lhrt-service-card {
  background: #fff;
  border: 1px solid var(--lhrt-border);
  border-radius: 16px;
  padding: 40px 36px;
  transition: all 0.4s ease;
  position: relative; overflow: hidden;
}
.lhrt-service-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--lhrt-pink), var(--lhrt-lavender));
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s ease;
}
.lhrt-service-card:hover { border-color: transparent; transform: translateY(-6px); box-shadow: 0 24px 64px rgba(0,0,0,0.1); }
.lhrt-service-card:hover::before { transform: scaleX(1); }
.lhrt-card-icon-wrap {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, rgba(248,167,167,0.15), rgba(209,213,245,0.15));
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 28px;
}
.lhrt-card-icon-wrap svg { width: 26px; height: 26px; stroke: var(--lhrt-pink); }
.lhrt-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px; font-weight: 700;
  color: var(--lhrt-dark); margin-bottom: 16px;
}
.lhrt-card-text { font-size: 15px; color: var(--lhrt-muted); line-height: 1.7; }

/* ═══════════════════════════════════════════════════════════════
   SECTION 5 — PROCESS
═══════════════════════════════════════════════════════════════ */
.lhrt-process-wrapper {
  background: linear-gradient(180deg, var(--lhrt-cream) 0%, #fff 100%);
  padding: 120px 64px;
  overflow: hidden;
}
.lhrt-process-header { text-align: center; margin-bottom: 96px; }
.lhrt-timeline-container { position: relative; max-width: 1200px; margin: 0 auto; }

/* progress bar */
.lhrt-timeline-bar-bg {
  position: absolute; top: 100px; left: 10%; right: 10%;
  height: 2px; background: var(--lhrt-border); z-index: 0;
}
.lhrt-timeline-bar-fill {
  position: absolute; top: 100px; left: 10%;
  height: 2px; width: 0;
  background: linear-gradient(90deg, var(--lhrt-pink), var(--lhrt-lavender));
  z-index: 1; transition: width 0.4s ease;
}

.lhrt-steps-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative; z-index: 2;
}
.lhrt-step-node { display: flex; flex-direction: column; align-items: center; }
.lhrt-circle-wrapper {
  position: relative;
  width: 200px; height: 200px;
  margin-bottom: 32px;
}
.lhrt-curved-text-svg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  animation: lhrtSpin 16s linear infinite;
}
.lhrt-curved-text-svg text {
  font-family: 'Jost', sans-serif;
  font-size: 13px; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase;
  fill: var(--lhrt-muted);
}
.lhrt-step-node.lhrt-active .lhrt-curved-text-svg text { fill: var(--lhrt-pink); }
.lhrt-circle-inner {
  position: absolute;
  inset: 24px;
  background: #fff;
  border-radius: 50%;
  border: 2px solid var(--lhrt-border);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center; padding: 20px;
  transition: all 0.4s ease;
  box-shadow: 0 8px 32px rgba(0,0,0,0.06);
}
.lhrt-step-node.lhrt-active .lhrt-circle-inner {
  border-color: var(--lhrt-pink);
  box-shadow: 0 8px 32px rgba(248,167,167,0.2);
}
.lhrt-step-id {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px; font-weight: 700;
  color: var(--lhrt-border); line-height: 1;
  margin-bottom: 8px; transition: color 0.4s;
}
.lhrt-step-node.lhrt-active .lhrt-step-id { color: var(--lhrt-pink); }
.lhrt-internal-content h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 15px; font-weight: 700;
  color: var(--lhrt-dark); margin-bottom: 6px;
}
.lhrt-internal-content p {
  font-size: 11px; color: var(--lhrt-muted);
  line-height: 1.5;
}

/* ═══════════════════════════════════════════════════════════════
   SECTION 6 — DIFFERENCE
═══════════════════════════════════════════════════════════════ */
.lhrt-why-wrapper { background: var(--lhrt-dark); padding: 120px 64px; }
.lhrt-why-inner { max-width: 1280px; margin: 0 auto; }
.lhrt-why-header { text-align: center; margin-bottom: 72px; }
.lhrt-why-header .lhrt-section-tag { color: var(--lhrt-pink); }
.lhrt-why-header .lhrt-main-headline { color: #fff; }

.lhrt-why-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
}
.lhrt-why-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 48px 40px;
  transition: all 0.4s ease;
}
.lhrt-why-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(248,167,167,0.3);
  transform: translateY(-4px);
}
.lhrt-why-card.span-7 { grid-column: span 7; }
.lhrt-why-card.span-5 { grid-column: span 5; }
.lhrt-why-card.span-6 { grid-column: span 6; }
.lhrt-why-card.span-12 { grid-column: span 12; }
.lhrt-why-icon {
  width: 40px; height: 40px;
  stroke: var(--lhrt-pink); stroke-width: 1.5;
  margin-bottom: 24px;
}
.lhrt-why-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px; font-weight: 700;
  color: #fff; margin-bottom: 16px;
}
.lhrt-why-card p { font-size: 15px; color: rgba(255,255,255,0.55); line-height: 1.75; }

/* ═══════════════════════════════════════════════════════════════
   SECTION 7 — TESTIMONIALS
═══════════════════════════════════════════════════════════════ */
.lhrt-testimonials-wrapper { background: var(--lhrt-cream); padding: 120px 0; overflow: hidden; }
.lhrt-testimonials-inner { max-width: 100%; }
.lhrt-testimonials-header { text-align: center; margin-bottom: 72px; padding: 0 64px; }
.lhrt-testimonial-slider-container { overflow: hidden; width: 100%; }
.lhrt-slider-track {
  display: flex;
  gap: 32px;
  width: max-content;
  animation: lhrtSlider 32s linear infinite;
  padding: 16px 16px 32px;
}
.lhrt-slider-track:hover { animation-play-state: paused; }
.lhrt-testimonial-card {
  background: #fff;
  border: 1px solid var(--lhrt-border);
  border-radius: 20px;
  padding: 40px;
  width: 380px; flex-shrink: 0;
  transition: box-shadow 0.3s;
  box-shadow: 0 4px 24px rgba(0,0,0,0.05);
}
.lhrt-testimonial-card:hover { box-shadow: 0 16px 48px rgba(0,0,0,0.1); }
.lhrt-testimonial-stars {
  color: #F59E0B; font-size: 18px;
  letter-spacing: 2px; margin-bottom: 20px;
}
.lhrt-testimonial-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 19px; font-style: italic; font-weight: 500;
  line-height: 1.65; color: var(--lhrt-dark);
  margin-bottom: 24px;
}
.lhrt-testimonial-author {
  font-family: 'Jost', sans-serif;
  font-size: 13px; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--lhrt-muted); font-style: normal;
}

/* ═══════════════════════════════════════════════════════════════
   SECTION 8 — MEMBERSHIP
═══════════════════════════════════════════════════════════════ */
.lhrt-membership-wrapper { background: #fff; padding: 120px 64px; }
.lhrt-membership-inner {
  display: grid;
  grid-template-columns: 45% 55%;
  gap: 80px;
  max-width: 1280px;
  margin: 0 auto;
  align-items: start;
}
.lhrt-membership-visual {
  border-radius: 20px; overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: 0 32px 80px rgba(0,0,0,0.12);
  position: sticky; top: 100px;
}
.lhrt-membership-visual img { width: 100%; height: 100%; object-fit: cover; display: block; }
.lhrt-membership-content { padding-top: 24px; }
.lhrt-offer-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--lhrt-pink), var(--lhrt-lavender));
  color: #fff;
  font-family: 'Jost', sans-serif;
  font-size: 12px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  padding: 8px 20px; border-radius: 100px;
  margin-bottom: 20px;
}
.lhrt-membership-description { margin-bottom: 48px; }
.lhrt-membership-description p {
  font-size: 17px; line-height: 1.8; color: var(--lhrt-muted); margin-bottom: 20px;
}
.lhrt-membership-card {
  background: var(--lhrt-cream);
  border: 1px solid var(--lhrt-border);
  border-radius: 20px;
  padding: 40px;
}
.lhrt-membership-card .lhrt-card-title {
  font-family: 'Jost', sans-serif;
  font-size: 12px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--lhrt-muted);
  display: block; margin-bottom: 24px;
}
.lhrt-inclusion-list { list-style: none; padding: 0; margin-bottom: 40px; }
.lhrt-inclusion-item {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--lhrt-border);
  font-size: 15px; font-weight: 500; color: var(--lhrt-dark);
}
.lhrt-inclusion-item:last-child { border-bottom: none; }
.lhrt-inclusion-item svg {
  width: 18px; height: 18px; stroke: var(--lhrt-aqua); stroke-width: 2.5; flex-shrink: 0;
}
.lhrt-membership-cta {
  display: inline-flex; align-items: center; gap: 12px;
  background: var(--lhrt-dark);
  color: #fff;
  font-family: 'Jost', sans-serif;
  font-size: 13px; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase;
  padding: 20px 36px; border-radius: 4px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.lhrt-membership-cta:hover { background: var(--lhrt-aqua); color: #fff; transform: translateY(-2px); }

/* ═══════════════════════════════════════════════════════════════
   SECTION 9 — CONTACT
═══════════════════════════════════════════════════════════════ */
.lhrt-contact-wrapper {
  background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
  padding: 120px 64px;
}
.lhrt-contact-inner {
  display: grid;
  grid-template-columns: 45% 55%;
  gap: 80px;
  max-width: 1280px; margin: 0 auto;
  align-items: start;
}
.lhrt-contact-content .lhrt-section-tag { color: var(--lhrt-pink); }
.lhrt-contact-content .lhrt-main-headline { color: #fff; }
.lhrt-contact-description p {
  font-size: 17px; line-height: 1.8; color: rgba(255,255,255,0.6);
}
.lhrt-contact-email-link {
  display: inline-block; margin-top: 32px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px; font-weight: 500;
  color: #fff; text-decoration: none;
  border-bottom: 2px solid var(--lhrt-pink);
  padding-bottom: 4px;
  transition: color 0.3s;
}
.lhrt-contact-email-link:hover { color: var(--lhrt-pink); }

/* Built-in Form */
.lhrt-builtin-form {
  background: #fff;
  border-radius: 20px;
  padding: 48px 44px;
}
.lhrt-form-header { margin-bottom: 36px; }
.lhrt-form-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px; font-weight: 700;
  color: var(--lhrt-dark); margin-bottom: 8px;
}
.lhrt-form-subtitle { font-size: 15px; color: var(--lhrt-muted); }
.lhrt-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.lhrt-form-group { margin-bottom: 24px; }
.lhrt-form-group label {
  display: block;
  font-family: 'Jost', sans-serif;
  font-size: 12px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--lhrt-muted); margin-bottom: 8px;
}
.lhrt-form-group input,
.lhrt-form-group textarea {
  width: 100%;
  font-family: 'Jost', sans-serif;
  font-size: 15px; color: var(--lhrt-dark);
  background: var(--lhrt-cream);
  border: 1px solid var(--lhrt-border);
  border-radius: 8px;
  padding: 16px 20px;
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s;
  resize: none;
}
.lhrt-form-group input:focus,
.lhrt-form-group textarea:focus {
  border-color: var(--lhrt-aqua);
  box-shadow: 0 0 0 3px rgba(0,140,180,0.1);
}
.lhrt-form-submit {
  width: 100%;
  font-family: 'Jost', sans-serif;
  font-size: 13px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: #fff; background: var(--lhrt-aqua);
  border: none; border-radius: 8px;
  padding: 20px; cursor: pointer;
  transition: all 0.3s;
}
.lhrt-form-submit:hover { background: var(--lhrt-aqua-dk); transform: translateY(-2px); }

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE — Tablet & Mobile
═══════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .lhrt-hero                    { grid-template-columns: 1fr; min-height: auto; }
  .lhrt-hero-img-panel          { height: 50vw; min-height: 300px; position: relative; }
  .lhrt-hero-content-top        { padding: 60px 40px 32px; }
  .lhrt-hero-highlight-card     { padding: 32px 40px; }
  .lhrt-features                { padding: 48px 40px; }
  .lhrt-features-grid           { grid-template-columns: 1fr; gap: 24px; }
  .lhrt-approach-container      { padding: 80px 40px; }
  .lhrt-approach-grid           { grid-template-columns: 1fr; gap: 60px; }
  .lhrt-floating-quote          { position: static; margin-top: 24px; max-width: 100%; }
  .lhrt-philosophy-wrapper      { padding: 80px 40px; }
  .lhrt-philosophy-inner        { grid-template-columns: 1fr; gap: 48px; }
  .lhrt-services-section        { padding: 80px 40px; }
  .lhrt-services-grid           { grid-template-columns: repeat(2,1fr); gap: 24px; }
  .lhrt-process-wrapper         { padding: 80px 40px; }
  .lhrt-steps-row               { grid-template-columns: repeat(2,1fr); gap: 48px; }
  .lhrt-timeline-bar-bg,
  .lhrt-timeline-bar-fill       { display: none; }
  .lhrt-why-wrapper             { padding: 80px 40px; }
  .lhrt-why-card.span-7,
  .lhrt-why-card.span-5         { grid-column: span 12; }
  .lhrt-membership-wrapper      { padding: 80px 40px; }
  .lhrt-membership-inner        { grid-template-columns: 1fr; }
  .lhrt-membership-visual       { position: static; aspect-ratio: 16/9; }
  .lhrt-contact-wrapper         { padding: 80px 40px; }
  .lhrt-contact-inner           { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .lhrt-hero-content-top        { padding: 48px 24px 24px; }
  .lhrt-hero-highlight-card     { padding: 24px; }
  .lhrt-features                { padding: 40px 24px; }
  .lhrt-approach-container,
  .lhrt-philosophy-wrapper,
  .lhrt-services-section,
  .lhrt-process-wrapper,
  .lhrt-why-wrapper,
  .lhrt-membership-wrapper,
  .lhrt-contact-wrapper         { padding: 60px 24px; }
  .lhrt-services-grid           { grid-template-columns: 1fr; }
  .lhrt-steps-row               { grid-template-columns: 1fr; }
  .lhrt-circle-wrapper          { width: 160px; height: 160px; }
  .lhrt-builtin-form            { padding: 32px 24px; }
  .lhrt-form-row                { grid-template-columns: 1fr; }
  .lhrt-testimonial-card        { width: 300px; }
}

/* ── Elementor editor preview — disable animations ──────────── */
.elementor-editor-active .lhrt-hero-eyebrow,
.elementor-editor-active .lhrt-hero-headline,
.elementor-editor-active .lhrt-hero-sub,
.elementor-editor-active .lhrt-hero-btns,
.elementor-editor-active .lhrt-hero-highlight-card {
  opacity: 1 !important;
  animation: none !important;
}
.elementor-editor-active .lhrt-curved-text-svg { animation: none !important; }
.elementor-editor-active .lhrt-slider-track     { animation: none !important; }
