/*
=============================================================
  ZENVITÉ — GLOBAL CSS FOUNDATION
  Paste this ONCE into:
  WordPress Admin → Appearance → Customize → Additional CSS
  Then click "Publish". You never need to touch this again.
=============================================================
*/
 
/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Inter:wght@300;400;500;600&display=swap');
 
/* ── Colour tokens ── */
:root {
  --zv-sand:        #C8AE8A;
  --zv-sand-light:  #E8D9C4;
  --zv-cream:       #F7F1E8;
  --zv-cream-deep:  #EFE5D4;
  --zv-white:       #FFFFFF;
  --zv-slate:       #2B3340;
  --zv-slate-mid:   #4A5568;
  --zv-gold:        #B8976A;
  --zv-gold-dark:   #9A7A52;
  --zv-text:        #3D3530;
  --zv-muted:       #7A7068;
 
  /* ── Extended tokens (used by all redesigned pages) ── */
  --zv-serif:       'Cormorant Garamond', Georgia, serif;
  --zv-sans:        'Inter', system-ui, sans-serif;
  --zv-text-muted:  #7A7068;   /* alias of --zv-muted */
  --zv-rule:        #E8DDD0;   /* subtle divider / border colour */
  --zv-body:        #5A5048;
}
 
/* ── Base resets (scoped to our components only) ── */
.zv *, .zv *::before, .zv *::after {
  box-sizing: border-box;
}
.zv {
  font-family: 'Inter', sans-serif;
  color: var(--zv-text);
  line-height: 1.7;
}
 
/* ── Typography ── */
.zv-serif {
  font-family: 'Cormorant Garamond', serif;
}
.zv-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--zv-gold);
  font-weight: 600;
  margin-bottom: 14px;
  display: block;
}
.zv-h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  font-weight: 300;
  line-height: 1.15;
  margin-bottom: 24px;
}
.zv-h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 16px;
  color: var(--zv-slate);
}
.zv-h2 em, .zv-h1 em { font-style: italic; font-weight: 400; }
.zv-lead {
  font-size: 1.05rem;
  color: var(--zv-muted);
  max-width: 600px;
  line-height: 1.75;
  font-weight: 300;
}
.zv-divider {
  width: 48px;
  height: 1px;
  background: var(--zv-sand);
  margin: 24px 0;
}
 
/* ── Buttons ── */
.zv-btn-primary {
  display: inline-block;
  background: var(--zv-slate);
  color: var(--zv-white) !important;
  padding: 16px 36px;
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none !important;
  font-weight: 600;
  border-radius: 2px;
  transition: all 0.2s;
  border: none;
  cursor: pointer;
}
.zv-btn-primary:hover {
  background: var(--zv-gold-dark) !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.14);
}
.zv-btn-ghost {
  display: inline-block;
  border: 1px solid rgba(255,255,255,0.5);
  color: var(--zv-white) !important;
  padding: 15px 28px;
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none !important;
  font-weight: 400;
  border-radius: 2px;
  transition: all 0.2s;
  cursor: pointer;
}
.zv-btn-ghost:hover { background: rgba(255,255,255,0.12) !important; }
.zv-btn-light {
  display: inline-block;
  background: var(--zv-white);
  color: var(--zv-slate) !important;
  padding: 16px 36px;
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none !important;
  font-weight: 600;
  border-radius: 2px;
  transition: all 0.2s;
}
.zv-btn-light:hover { background: var(--zv-cream) !important; transform: translateY(-1px); }
 
/* ── Section wrapper ── */
.zv-section {
  padding: 88px 48px;
}
.zv-section-inner {
  max-width: 1160px;
  margin: 0 auto;
}
 
/* ── Trust bar ── */
.zv-trust-bar {
  background: var(--zv-slate);
  padding: 18px 48px;
}
.zv-trust-bar-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}
.zv-trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.85);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
}
.zv-trust-icon {
  width: 26px;
  height: 26px;
  background: var(--zv-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: white;
  flex-shrink: 0;
}
 
/* ── Hero ── */
.zv-hero {
  position: relative;
  min-height: 90vh;
  background: linear-gradient(135deg, #BFA882 0%, #D4BC98 40%, #C8AE8A 100%);
  display: flex;
  align-items: center;
  overflow: hidden;
}
.zv-hero-inner {
  position: relative;
  max-width: 1160px;
  margin: 0 auto;
  padding: 80px 48px;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 80px;
  align-items: center;
  width: 100%;
}
.zv-hero-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  font-weight: 500;
  margin-bottom: 20px;
  display: block;
}
.zv-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  font-weight: 300;
  color: var(--zv-white);
  line-height: 1.15;
  margin-bottom: 24px;
}
.zv-hero h1 em { font-style: italic; font-weight: 400; }
.zv-hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.75;
  max-width: 520px;
  margin-bottom: 36px;
  font-weight: 300;
}
.zv-hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 20px;
}
.zv-hero-note {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  font-style: italic;
}
 
/* ── Hero card ── */
.zv-hero-card {
  background: rgba(255,255,255,0.93);
  backdrop-filter: blur(10px);
  border-radius: 4px;
  padding: 36px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.14);
}
.zv-hero-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--zv-slate);
  margin-bottom: 4px;
}
.zv-hero-card .sub {
  font-size: 0.78rem;
  color: var(--zv-muted);
  margin-bottom: 22px;
  font-style: italic;
}
.zv-symptom-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}
.zv-symptom-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--zv-text);
  line-height: 1.4;
}
.zv-symptom-list li::before {
  content: '';
  width: 16px;
  height: 16px;
  min-width: 16px;
  border-radius: 50%;
  background: var(--zv-cream-deep);
  border: 2px solid var(--zv-sand);
  margin-top: 2px;
}
.zv-hero-card-cta {
  display: block;
  width: 100%;
  text-align: center;
  background: var(--zv-slate);
  color: var(--zv-white) !important;
  padding: 14px;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none !important;
  font-weight: 600;
  border-radius: 2px;
  transition: background 0.2s;
}
.zv-hero-card-cta:hover { background: var(--zv-gold-dark) !important; }
.zv-hero-card-note {
  margin-top: 11px;
  font-size: 0.74rem;
  color: var(--zv-muted);
  text-align: center;
  font-style: italic;
}
 
/* ── Recognition / symptom cards ── */
.zv-recog-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-top: 56px;
}
.zv-recog-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.zv-recog-card {
  background: var(--zv-white);
  border: 1px solid var(--zv-sand-light);
  border-radius: 3px;
  padding: 22px 20px;
  transition: all 0.2s;
}
.zv-recog-card:hover {
  border-color: var(--zv-sand);
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
  transform: translateY(-2px);
}
.zv-recog-card .icon { font-size: 1.4rem; margin-bottom: 10px; }
.zv-recog-card h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--zv-slate);
  margin-bottom: 6px;
}
.zv-recog-card p { font-size: 0.82rem; color: var(--zv-muted); line-height: 1.5; }
.zv-recog-text blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-style: italic;
  font-weight: 300;
  color: var(--zv-slate);
  line-height: 1.5;
  border-left: 3px solid var(--zv-sand);
  padding-left: 28px;
  margin-bottom: 24px;
}
.zv-recog-text p { color: var(--zv-muted); line-height: 1.75; font-size: 0.95rem; margin-bottom: 16px; }
 
/* ── Process steps ── */
.zv-process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 56px;
  position: relative;
}
.zv-process-steps::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 12%;
  right: 12%;
  height: 1px;
  background: var(--zv-sand-light);
}
.zv-process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 20px;
  position: relative;
}
.zv-step-num {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--zv-cream);
  border: 2px solid var(--zv-sand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--zv-gold-dark);
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
  transition: all 0.2s;
}
.zv-process-step:hover .zv-step-num {
  background: var(--zv-slate);
  color: var(--zv-white);
  border-color: var(--zv-slate);
}
.zv-step-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--zv-slate);
  margin-bottom: 10px;
}
.zv-step-desc { font-size: 0.85rem; color: var(--zv-muted); line-height: 1.6; }
.zv-step-tag {
  display: inline-block;
  margin-top: 12px;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--zv-gold);
  font-weight: 600;
}
 
/* ── Pricing ── */
.zv-pricing-inner {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 80px;
  align-items: center;
  margin-top: 56px;
}
.zv-price-card {
  background: var(--zv-white);
  border: 1px solid var(--zv-sand-light);
  border-radius: 4px;
  padding: 44px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.07);
  text-align: center;
}
.zv-price-label {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--zv-gold);
  font-weight: 600;
  margin-bottom: 12px;
  display: block;
}
.zv-price-amount {
  font-family: 'Cormorant Garamond', serif;
  font-size: 4rem;
  font-weight: 300;
  color: var(--zv-slate);
  line-height: 1;
  margin-bottom: 4px;
}
.zv-price-amount span { font-size: 2rem; vertical-align: top; margin-top: 10px; display: inline-block; }
.zv-price-sub { font-size: 0.82rem; color: var(--zv-muted); margin-bottom: 28px; font-style: italic; }
.zv-price-includes {
  list-style: none;
  padding: 0;
  text-align: left;
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.zv-price-includes li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.88rem;
  color: var(--zv-text);
}
.zv-check {
  width: 20px;
  height: 20px;
  min-width: 20px;
  background: #D4E8D4;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  color: #3A7A3A;
  margin-top: 1px;
}
.zv-price-cta {
  display: block;
  background: var(--zv-slate);
  color: var(--zv-white) !important;
  padding: 16px;
  text-align: center;
  text-decoration: none !important;
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 600;
  border-radius: 2px;
  transition: background 0.2s;
}
.zv-price-cta:hover { background: var(--zv-gold-dark) !important; }
.zv-price-note { margin-top: 14px; font-size: 0.76rem; color: var(--zv-muted); font-style: italic; }
.zv-pricing-text h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--zv-slate);
  margin-bottom: 20px;
  line-height: 1.3;
}
.zv-pricing-text p { font-size: 0.93rem; color: var(--zv-muted); line-height: 1.8; margin-bottom: 20px; }
.zv-follow-up {
  background: var(--zv-cream);
  border-left: 3px solid var(--zv-sand);
  padding: 18px 22px;
  border-radius: 0 3px 3px 0;
  margin-bottom: 24px;
}
.zv-follow-up p { font-size: 0.85rem; color: var(--zv-slate-mid); margin-bottom: 0; line-height: 1.6; }
.zv-follow-up strong { color: var(--zv-slate); }
 
/* ── Testimonials ── */
.zv-testimonials-wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 52px;
}
.zv-testimonial-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 4px;
  padding: 32px;
}
.zv-stars { color: var(--zv-sand); font-size: 0.85rem; letter-spacing: 3px; margin-bottom: 16px; }
.zv-testimonial-card p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-style: italic;
  color: rgba(255,255,255,0.88);
  line-height: 1.65;
  margin-bottom: 20px;
  font-weight: 300;
}
.zv-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.zv-author-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--zv-sand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  color: white;
  font-weight: 500;
  flex-shrink: 0;
}
.zv-author-name { font-size: 0.8rem; color: rgba(255,255,255,0.9); font-weight: 500; }
.zv-author-detail { font-size: 0.75rem; color: rgba(255,255,255,0.45); font-style: italic; }
 
/* ── Why grid ── */
.zv-why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 52px;
}
.zv-why-card {
  background: var(--zv-white);
  border: 1px solid var(--zv-sand-light);
  border-radius: 3px;
  padding: 32px 28px;
  transition: all 0.2s;
}
.zv-why-card:hover {
  box-shadow: 0 8px 28px rgba(0,0,0,0.08);
  transform: translateY(-2px);
  border-color: var(--zv-sand);
}
.zv-why-icon { font-size: 1.6rem; margin-bottom: 16px; }
.zv-why-card h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--zv-slate);
  margin-bottom: 10px;
}
.zv-why-card p { font-size: 0.86rem; color: var(--zv-muted); line-height: 1.7; }
 
/* ── Team ── */
.zv-team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: 52px;
}
.zv-team-card { text-align: center; }
.zv-team-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--zv-cream-deep);
  border: 3px solid var(--zv-sand-light);
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem;
  font-weight: 300;
  color: var(--zv-gold-dark);
  overflow: hidden;
}
.zv-team-avatar img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.zv-team-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--zv-slate);
  margin-bottom: 4px;
}
.zv-team-role { font-size: 0.78rem; color: var(--zv-muted); line-height: 1.5; }
.zv-team-qual { font-size: 0.72rem; color: var(--zv-gold); margin-top: 8px; font-style: italic; }
 
/* ── FAQ ── */
.zv-faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-top: 52px;
  align-items: start;
}
.zv-faq-list { display: flex; flex-direction: column; gap: 2px; }
.zv-faq-item {
  border: 1px solid var(--zv-sand-light);
  border-radius: 2px;
  background: var(--zv-white);
  overflow: hidden;
}
.zv-faq-item.open { border-color: var(--zv-sand); }
.zv-faq-q {
  width: 100%;
  padding: 18px 22px;
  background: none;
  border: none;
  text-align: left;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: var(--zv-slate);
  font-weight: 500;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  transition: background 0.15s;
}
.zv-faq-q:hover { background: var(--zv-cream); }
.zv-faq-q .arrow { font-size: 0.75rem; color: var(--zv-gold); transition: transform 0.2s; flex-shrink: 0; }
.zv-faq-a {
  padding: 0 22px;
  max-height: 0;
  overflow: hidden;
  font-size: 0.87rem;
  color: var(--zv-muted);
  line-height: 1.7;
  transition: max-height 0.3s ease, padding 0.3s ease;
}
.zv-faq-item.open .zv-faq-a { max-height: 400px; padding: 0 22px 18px; }
.zv-faq-item.open .arrow { transform: rotate(180deg); }
.zv-faq-aside { position: sticky; top: 90px; }
.zv-faq-aside-card {
  background: var(--zv-slate);
  border-radius: 4px;
  padding: 40px 36px;
  color: var(--zv-white);
}
.zv-faq-aside-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 300;
  margin-bottom: 16px;
  line-height: 1.25;
  color: var(--zv-white);
}
.zv-faq-aside-card p { font-size: 0.88rem; color: rgba(255,255,255,0.65); line-height: 1.7; margin-bottom: 28px; }
.zv-faq-aside-cta {
  display: block;
  background: var(--zv-white);
  color: var(--zv-slate) !important;
  padding: 15px;
  text-align: center;
  text-decoration: none !important;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  border-radius: 2px;
  margin-bottom: 14px;
  transition: all 0.2s;
}
.zv-faq-aside-cta:hover { background: var(--zv-cream) !important; }
.zv-faq-aside-phone { text-align: center; font-size: 0.8rem; color: rgba(255,255,255,0.5); font-style: italic; }
.zv-faq-aside-phone a { color: rgba(255,255,255,0.8) !important; text-decoration: none !important; }
.zv-coverage-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; }
.zv-tag {
  display: inline-block;
  padding: 5px 14px;
  background: rgba(255,255,255,0.1);
  border-radius: 20px;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.7);
}
 
/* ── Final CTA section ── */
.zv-final-cta {
  background: linear-gradient(135deg, #BFA882 0%, #C8AE8A 100%);
  padding: 100px 48px;
  text-align: center;
}
.zv-final-cta h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 300;
  color: var(--zv-white);
  margin-bottom: 20px;
  line-height: 1.2;
}
.zv-final-cta h2 em { font-style: italic; }
.zv-final-cta p {
  font-size: 1rem;
  color: rgba(255,255,255,0.8);
  max-width: 540px;
  margin: 0 auto 40px;
  line-height: 1.7;
  font-weight: 300;
}
.zv-final-cta-btns { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }
 
/* ── Background utility classes ── */
.zv-bg-cream       { background: var(--zv-cream); }
.zv-bg-cream-deep  { background: var(--zv-cream-deep); }
.zv-bg-white       { background: var(--zv-white); }
.zv-bg-slate       { background: var(--zv-slate); }
.zv-bg-sand-grad   { background: linear-gradient(135deg, #BFA882 0%, #C8AE8A 100%); }
 
/* ── On slate backgrounds, override text colours ── */
.zv-bg-slate .zv-h2 { color: var(--zv-white); }
.zv-bg-slate .zv-eyebrow { color: var(--zv-sand); }
.zv-bg-slate .zv-lead { color: rgba(255,255,255,0.6); }
.zv-bg-slate .zv-divider { background: rgba(255,255,255,0.2); }
 
/* ── Registration badges (footer) ── */
.zv-reg-badges { display: flex; gap: 12px; flex-wrap: wrap; }
.zv-reg-badge {
  padding: 6px 14px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 2px;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  font-weight: 600;
}
 
/* ── Responsive ── */
@media (max-width: 900px) {
  .zv-hero-inner       { grid-template-columns: 1fr; gap: 40px; padding: 60px 24px; }
  .zv-hero-card        { order: -1; }
  .zv-recog-grid       { grid-template-columns: 1fr; gap: 40px; }
  .zv-recog-cards      { grid-template-columns: 1fr 1fr; }
  .zv-process-steps    { grid-template-columns: 1fr 1fr; gap: 40px; }
  .zv-process-steps::before { display: none; }
  .zv-pricing-inner    { grid-template-columns: 1fr; }
  .zv-testimonials-wrap{ grid-template-columns: 1fr; }
  .zv-why-grid         { grid-template-columns: 1fr 1fr; }
  .zv-team-grid        { grid-template-columns: 1fr 1fr; }
  .zv-faq-grid         { grid-template-columns: 1fr; }
  .zv-faq-aside        { position: static; }
  .zv-section          { padding: 60px 24px; }
  .zv-trust-bar        { padding: 18px 24px; }
  .zv-trust-bar-inner  { gap: 20px; }
}
@media (max-width: 600px) {
  .zv-recog-cards   { grid-template-columns: 1fr; }
  .zv-process-steps { grid-template-columns: 1fr; }
  .zv-why-grid      { grid-template-columns: 1fr; }
  .zv-team-grid     { grid-template-columns: 1fr 1fr; }
  .zv-hero-ctas     { flex-direction: column; }
  .zv-final-cta-btns{ flex-direction: column; align-items: center; }
}
 
/* ════════════════════════════════════════════════
   GLOBAL LINK COLOUR FIX
   Overrides theme's pink-red  a { color:#cc3366 }
   Must come AFTER theme stylesheets.
   ════════════════════════════════════════════════ */
 
/* Reset link colour inside every zenvité HTML widget */
.zv a,
.elementor-widget-html a {
  color: inherit;
  text-decoration: none;
}
 
/* Inline body-copy links (not buttons) get a subtle underline */
.zv-bg-cream  a:not([class]),
.zv-bg-white  a:not([class]),
.zv-bg-cream  p a,
.zv-bg-white  p a {
  color: var(--zv-slate);
  border-bottom: 1px solid var(--zv-rule);
  transition: border-color 0.2s;
}
.zv-bg-cream  p a:hover,
.zv-bg-white  p a:hover { border-color: var(--zv-sand); }
 
/* Links on dark (slate) backgrounds */
.zv-bg-slate a:not([class]),
.zv-bg-slate p a {
  color: rgba(255,255,255,0.8);
  border-bottom: 1px solid rgba(255,255,255,0.2);
}
.zv-bg-slate p a:hover { color: #fff; border-color: var(--zv-sand); }
 
/* ── Extra button variants used by new pages ── */
.zv-btn-outline {
  display: inline-block;
  border: 1px solid var(--zv-slate);
  color: var(--zv-slate) !important;
  padding: 14px 32px;
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none !important;
  font-weight: 600;
  border-radius: 2px;
  transition: all 0.2s;
  background: transparent;
}
.zv-btn-outline:hover {
  background: var(--zv-slate) !important;
  color: #fff !important;
  transform: translateY(-1px);
}
 
.zv-btn-ghost-light {
  display: inline-block;
  border: 1px solid rgba(255,255,255,0.55);
  color: #fff !important;
  padding: 14px 32px;
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none !important;
  font-weight: 400;
  border-radius: 2px;
  transition: all 0.2s;
  background: transparent;
}
.zv-btn-ghost-light:hover {
  background: rgba(255,255,255,0.12) !important;
}
 
/* ── Body copy helper (replaces zv-lead on new pages) ── */
.zv-body {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: var(--zv-muted);
  line-height: 1.8;
  margin-bottom: 1rem;
}
 
/* ── Section centre-align helper ── */
.zv-section { text-align: center; }
.zv-section .zv-h2 { text-align: center; }
 
/* ── Team card (new pages) ── */
.zv-team-card {
  text-align: center;
}
.zv-team-card__img-wrap {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 1.25rem;
  background: #ffffff;          /* white so PNG white-bg blends in */
  border: 3px solid var(--zv-rule);
}
.zv-team-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 50%;
}
.zv-team-card__name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--zv-slate);
  margin-bottom: 0.2rem;
}
.zv-team-card__role {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  color: var(--zv-gold);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.zv-team-card__creds {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  color: var(--zv-muted);
  line-height: 1.5;
  font-style: italic;
}
.zv-team-card__note {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  color: var(--zv-sand);
  margin-top: 0.35rem;
  letter-spacing: 0.04em;
}
 
/* Team grid (new pages) */
.zv-team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}
@media (max-width: 900px) {
  .zv-team-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 500px) {
  .zv-team-grid { grid-template-columns: 1fr 1fr; }
}
/* Global link colour reset */
a, a:link, a:visited { color: inherit; }

/* Elementor widget links — explicit slate */
.elementor-icon-list-item a,
.elementor-post__thumbnail__link,
.elementor-post__title a,
.elementor-portfolio-item a { color: #2B3340 !important; }