/* ═══════════════════════════════════════════════════════
   2208 SIGNATURE — EXTRA CSS
   All section styles, components, modals, blog
═══════════════════════════════════════════════════════ */

/* ─── FILTER BAR ─────────────────────────────────────── */
.filter-bar {
  background: #fff;
  border-bottom: 1px solid rgba(0,0,0,.07);
  padding: 14px 5%;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  position: sticky;
  top: 76px;
  z-index: 100;
  box-shadow: var(--shadow-sm);
}
.filter-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--stone);
  margin-right: 4px;
}
.filter-btn {
  font-size: 13px;
  font-weight: 400;
  color: var(--stone);
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(0,0,0,.1);
  background: transparent;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}
.filter-btn:hover,
.filter-btn.active {
  background: var(--gold-dim);
  border-color: var(--gold-line);
  color: var(--gold);
}

/* ─── HERO SECTION ───────────────────────────────────── */
.hero-sec {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy);
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(13,13,13,.92) 0%, rgba(15,25,35,.78) 50%, rgba(15,25,35,.6) 100%);
  z-index: 1;
}
.hero-grain {
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: .04;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px;
}
.hero-inner {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding-top: 40px;
  padding-bottom: 80px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 500;
  color: rgba(255,255,255,.55);
  letter-spacing: .06em;
  margin-bottom: 24px;
  padding: 8px 16px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-pill);
}
.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse-dot 2s ease-in-out infinite;
  flex-shrink: 0;
}
.hero-h1 {
  font-size: clamp(38px, 5.5vw, 72px);
  font-weight: 600;
  color: #FAFAF8;
  letter-spacing: -.035em;
  line-height: 1.05;
  margin-bottom: 22px;
}
.hero-h1 em {
  font-style: italic;
  color: var(--gold);
}
.hero-sub {
  font-size: 17px;
  font-weight: 300;
  color: rgba(255,255,255,.52);
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 480px;
}
.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.hero-trust {
  display: flex;
  align-items: center;
  gap: 14px;
}
.trust-avatars {
  display: flex;
}
.trust-avatars img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid rgba(15,25,35,.8);
  object-fit: cover;
  margin-left: -8px;
  transition: transform .2s;
}
.trust-avatars img:first-child { margin-left: 0; }
.trust-avatars img:hover { transform: translateY(-2px); z-index: 1; }
.hero-trust p {
  font-size: 13px;
  font-weight: 300;
  color: rgba(255,255,255,.4);
}
.hero-trust strong {
  color: rgba(255,255,255,.75);
  font-weight: 500;
}

/* Hero Visual */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-card {
  background: rgba(15,25,35,.88);
  border: 1px solid var(--gold-line);
  border-radius: 20px;
  padding: 28px 26px;
  backdrop-filter: blur(12px);
  box-shadow: 0 20px 60px rgba(0,0,0,.4);
}
.hc-main {
  width: 280px;
  position: relative;
  z-index: 2;
  animation: float 7s ease-in-out infinite;
}
.hc-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.hc-stat-n {
  font-family: var(--serif);
  font-size: 52px;
  font-weight: 600;
  letter-spacing: -.04em;
  line-height: 1;
  color: #FAFAF8;
  margin-bottom: 4px;
}
.hc-stat-l {
  font-size: 12px;
  color: rgba(255,255,255,.38);
  font-weight: 300;
  margin-bottom: 18px;
}
.hc-bars { display: flex; flex-direction: column; gap: 12px; }
.hc-bar-row {
  display: flex;
  align-items: center;
  gap: 10px;
}
.hc-bar-name {
  font-size: 11px;
  color: rgba(255,255,255,.38);
  width: 85px;
  flex-shrink: 0;
  font-weight: 300;
}
.hc-bar-track {
  flex: 1;
  height: 4px;
  background: rgba(255,255,255,.07);
  border-radius: var(--radius-pill);
  overflow: hidden;
}
.hc-bar-fill {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--gold), var(--gold-l));
  border-radius: var(--radius-pill);
  transition: width 1.4s cubic-bezier(.4,0,.2,1) .6s;
}
.hc-bar-fill.animated { width: var(--w); }
.hc-bar-pct {
  font-size: 11px;
  color: var(--gold);
  font-weight: 600;
  width: 32px;
  text-align: right;
}
.hc-float {
  position: absolute;
  z-index: 1;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 180px;
}
.hc-float1 {
  top: -28px;
  right: -50px;
  animation: float 5.5s ease-in-out infinite 1s;
  transform: rotate(3deg);
}
.hc-float2 {
  bottom: -24px;
  left: -40px;
  animation: float 6.5s ease-in-out infinite .5s;
  transform: rotate(-2deg);
}

/* ─── TICKER ─────────────────────────────────────────── */
.ticker-sec {
  background: var(--charcoal);
  border-top: 1px solid var(--gold-line);
  border-bottom: 1px solid var(--gold-line);
  overflow: hidden;
}
.ticker-inner {
  display: flex;
  align-items: center;
  height: 52px;
}
.ticker-label {
  flex-shrink: 0;
  background: var(--gold);
  color: var(--navy);
  height: 100%;
  display: flex;
  align-items: center;
  padding: 0 28px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  white-space: nowrap;
}
.ticker-track-wrap {
  flex: 1;
  overflow: hidden;
}
.ticker-track {
  display: flex;
  animation: ticker 32s linear infinite;
  width: max-content;
}
.tick-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 32px;
  font-size: 12px;
  font-weight: 300;
  color: rgba(255,255,255,.32);
  white-space: nowrap;
  letter-spacing: .08em;
}

/* ─── ABOUT ──────────────────────────────────────────── */
.about-sec { background: var(--warm); padding: 100px 5%; }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
}
.about-h2 {
  font-size: clamp(32px, 4vw, 52px);
  color: var(--charcoal);
  margin-bottom: 24px;
}
.about-h2 em { font-style: italic; color: var(--gold); }
.about-p {
  font-size: 16px;
  font-weight: 300;
  color: #3a3a3a;
  line-height: 1.88;
  margin-bottom: 16px;
}
.about-signature {
  font-family: var(--serif);
  font-size: 24px;
  font-style: italic;
  color: var(--gold);
  margin-top: 28px;
}
.about-photo-wrap { position: relative; border-radius: 24px; overflow: visible; }
.about-photo {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
}
.about-photo-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--navy);
  border: 1px solid var(--gold-line);
  border-radius: var(--radius);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-md);
}
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 36px;
}
.about-stat {
  background: #fff;
  border: 1px solid rgba(0,0,0,.07);
  border-radius: var(--radius);
  padding: 20px 16px;
  text-align: center;
  transition: var(--transition);
}
.about-stat:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.astat-num {
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 600;
  letter-spacing: -.04em;
  color: var(--charcoal);
  line-height: 1;
  margin-bottom: 4px;
}
.astat-label {
  font-size: 12px;
  font-weight: 300;
  color: var(--stone);
}

/* ─── SERVICES ───────────────────────────────────────── */
.svc-sec { background: var(--navy); padding: 100px 5%; }
.svc-header {
  max-width: 600px;
  margin: 0 auto 60px;
  text-align: center;
}
.svc-h2 {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 600;
  color: #FAFAF8;
  margin-bottom: 16px;
}
.svc-h2 em { font-style: italic; }
.svc-sub { font-size: 16px; font-weight: 300; color: rgba(255,255,255,.42); line-height: 1.75; }
.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 1200px;
  margin: 0 auto;
}
.svc-card {
  background: rgba(255,255,255,.03);
  border: 1px solid var(--gold-line);
  border-radius: 20px;
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
  transition: background .25s, border-color .25s, transform .2s;
}
.svc-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .4s;
}
.svc-card:hover {
  background: rgba(255,255,255,.055);
  border-color: rgba(201,168,76,.4);
  transform: translateY(-3px);
}
.svc-card:hover::before { transform: scaleX(1); }
.svc-num {
  font-family: var(--serif);
  font-size: 13px;
  font-style: italic;
  color: var(--gold);
  opacity: .7;
  display: block;
  margin-bottom: 14px;
}
.svc-icon { margin-bottom: 18px; }
.svc-name {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
  color: #FAFAF8;
  letter-spacing: -.01em;
  margin-bottom: 12px;
}
.svc-text { font-size: 14px; font-weight: 300; color: rgba(255,255,255,.4); line-height: 1.75; }
.svc-outcomes { margin-top: 20px; display: flex; flex-direction: column; gap: 8px; }
.so {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,.52);
  font-weight: 300;
}
.so::before {
  content: '';
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

/* ─── RESULTS RIBBON ─────────────────────────────────── */
.results-ribbon { background: var(--charcoal); padding: 56px 5%; }
.results-ribbon-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  max-width: 1000px;
  margin: 0 auto;
  border: 1px solid var(--gold-line);
  border-radius: 20px;
  overflow: hidden;
}
.rr-item {
  padding: 36px 28px;
  text-align: center;
  border-right: 1px solid var(--gold-line);
}
.rr-item:last-child { border-right: none; }
.rr-num {
  font-family: var(--serif);
  font-size: 52px;
  font-weight: 600;
  letter-spacing: -.04em;
  background: linear-gradient(105deg, #b8934a 0%, #e8c97a 40%, #C9A84C 65%, #dfc278 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 6s linear infinite;
  line-height: 1;
  margin-bottom: 8px;
}
.rr-label {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,.7);
  margin-bottom: 4px;
}
.rr-sub { font-size: 12px; font-weight: 300; color: var(--stone); }

/* ─── PROCESS ────────────────────────────────────────── */
.process-sec { background: var(--warm); padding: 100px 5%; }
.process-header {
  max-width: 600px;
  margin: 0 auto 64px;
  text-align: center;
}
.process-h2 {
  font-size: clamp(32px, 4vw, 50px);
  color: var(--charcoal);
}
.process-h2 em { font-style: italic; color: var(--gold); }
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
}
.process-step {
  padding: 32px 24px;
  text-align: center;
  position: relative;
}
.ps-num {
  font-family: var(--serif);
  font-size: 48px;
  font-weight: 600;
  letter-spacing: -.04em;
  background: linear-gradient(105deg, #b8934a, #e8c97a, #C9A84C);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 6s linear infinite;
  line-height: 1;
  margin-bottom: 16px;
}
.ps-title {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 12px;
  letter-spacing: -.01em;
}
.ps-desc { font-size: 14px; font-weight: 300; color: var(--stone); line-height: 1.75; }
.ps-connector {
  position: absolute;
  top: 52px;
  right: -1px;
  width: 24px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-line), transparent);
}

/* ─── TESTIMONIALS ───────────────────────────────────── */
.testi-sec { background: #fff; padding: 100px 5%; }
.testi-header {
  max-width: 560px;
  margin: 0 auto 56px;
  text-align: center;
}
.testi-h2 {
  font-size: clamp(32px, 4vw, 52px);
  color: var(--charcoal);
  margin-bottom: 12px;
}
.testi-h2 em { font-style: italic; color: var(--gold); }
.testi-sub { font-size: 16px; font-weight: 300; color: var(--stone); line-height: 1.7; }
.testi-slider-wrap { max-width: 860px; margin: 0 auto; }
.testi-track {
  position: relative;
  min-height: 280px;
}
.testi-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity .45s ease, transform .45s ease;
  transform: translateX(24px);
  padding: 4px;
}
.testi-slide.active {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
  position: relative;
}
.testi-card {
  background: var(--warm);
  border: 1px solid rgba(0,0,0,.07);
  border-radius: 24px;
  padding: 48px 44px;
  box-shadow: var(--shadow-sm);
}
.testi-stars { display: flex; gap: 4px; margin-bottom: 24px; }
.testi-quote {
  font-family: var(--serif);
  font-size: clamp(18px, 2.5vw, 22px);
  font-weight: 400;
  font-style: italic;
  color: var(--charcoal);
  line-height: 1.65;
  margin-bottom: 32px;
}
.testi-author { display: flex; align-items: center; gap: 16px; }
.testi-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold-line);
  flex-shrink: 0;
}
.testi-name {
  font-size: 15px;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 2px;
}
.testi-role { font-size: 13px; font-weight: 300; color: var(--stone); }
.testi-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
}
.testi-prev, .testi-next {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(0,0,0,.1);
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--stone);
  transition: var(--transition);
}
.testi-prev:hover, .testi-next:hover {
  border-color: var(--gold-line);
  color: var(--gold);
  background: var(--gold-dim);
}
.testi-dots { display: flex; gap: 8px; }
.testi-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(0,0,0,.15);
  transition: var(--transition);
}
.testi-dot.active {
  background: var(--gold);
  width: 24px;
  border-radius: 4px;
}

/* ─── CTA BAND ───────────────────────────────────────── */
.cta-band {
  background: var(--navy);
  padding: 100px 5%;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-band-grain {
  position: absolute;
  inset: 0;
  opacity: .04;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px;
}
.cta-band-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 700px; height: 400px;
  background: radial-gradient(ellipse, rgba(201,168,76,.07) 0%, transparent 70%);
  pointer-events: none;
}
.cta-band-h2 {
  font-size: clamp(34px, 5vw, 62px);
  color: #FAFAF8;
  margin-bottom: 18px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.cta-band-h2 em { font-style: italic; color: var(--gold); }
.cta-band-sub {
  font-size: 17px;
  font-weight: 300;
  color: rgba(255,255,255,.42);
  line-height: 1.8;
  max-width: 580px;
  margin: 0 auto 40px;
}
.cta-band-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ─── BLOG PREVIEW (homepage) ────────────────────────── */
.blog-preview-sec { background: var(--warm); padding: 100px 5%; }
.blog-preview-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  gap: 20px;
  flex-wrap: wrap;
}
.blog-preview-h2 {
  font-size: clamp(30px, 3.5vw, 46px);
  color: var(--charcoal);
}
.blog-preview-h2 em { font-style: italic; color: var(--gold); }
.blog-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}
.blog-preview-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,.06);
  transition: var(--transition);
}
.blog-preview-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.bpc-thumb-link { display: block; overflow: hidden; }
.bpc-thumb {
  height: 200px;
  overflow: hidden;
  background: var(--navy);
}
.bpc-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.blog-preview-card:hover .bpc-thumb img { transform: scale(1.04); }
.bpc-body { padding: 24px; }
.bpc-cat {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 8px;
  text-decoration: none;
}
.bpc-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--charcoal);
  letter-spacing: -.01em;
  margin-bottom: 8px;
  line-height: 1.3;
}
.bpc-title a { color: inherit; transition: color .2s; }
.bpc-title a:hover { color: var(--gold); }
.bpc-excerpt { font-size: 14px; font-weight: 300; color: var(--stone); line-height: 1.7; margin-bottom: 14px; }
.bpc-meta { font-size: 12px; font-weight: 300; color: var(--stone-light); }

/* ─── CONTACT SECTION ────────────────────────────────── */
.contact-sec { background: var(--warm); padding: 100px 5%; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
}
.contact-h2 {
  font-size: clamp(32px, 4vw, 50px);
  color: var(--charcoal);
  margin-bottom: 16px;
}
.contact-h2 em { font-style: italic; color: var(--gold); }
.contact-p { font-size: 16px; font-weight: 300; color: #3a3a3a; line-height: 1.8; margin-bottom: 32px; }
.contact-items { display: flex; flex-direction: column; gap: 20px; }
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  text-decoration: none;
  color: inherit;
}
.ci-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--gold-dim);
  border: 1px solid var(--gold-line);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}
.ci-label { font-size: 12px; font-weight: 500; color: var(--stone); margin-bottom: 2px; letter-spacing: .04em; }
.ci-value { font-size: 15px; font-weight: 400; color: var(--charcoal); line-height: 1.5; }
a.contact-item .ci-value { color: var(--gold); }

/* Contact Form */
.contact-form-wrap {
  background: #fff;
  border: 1px solid rgba(0,0,0,.07);
  border-radius: 24px;
  padding: 40px 36px;
  box-shadow: var(--shadow-sm);
}
.cf-title {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 28px;
}
.cf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.cf-field { margin-bottom: 16px; }
.cf-field:last-of-type { margin-bottom: 0; }
.cf-field label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 6px;
}
.cf-field input,
.cf-field select,
.cf-field textarea {
  width: 100%;
  background: var(--warm);
  border: 1px solid rgba(0,0,0,.1);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  font-size: 15px;
  font-weight: 300;
  color: var(--charcoal);
  transition: border-color .2s;
  -webkit-appearance: none;
}
.cf-field input:focus,
.cf-field select:focus,
.cf-field textarea:focus {
  border-color: var(--gold);
  background: #fff;
}
.cf-field textarea { resize: vertical; min-height: 110px; }
.cf-submit {
  width: 100%;
  justify-content: center;
  margin-top: 20px;
  font-size: 14px;
  padding: 16px;
}
.cf-note {
  text-align: center;
  font-size: 13px;
  font-weight: 300;
  color: var(--stone);
  margin-top: 14px;
}
.cf-note a { color: var(--gold); }
.cf-response {
  margin-top: 14px;
  font-size: 14px;
  font-weight: 400;
  text-align: center;
  min-height: 20px;
}
.cf-response.success { color: #2d7a4e; }
.cf-response.error { color: #b94040; }

/* ─── BLOG ARCHIVE PAGE ──────────────────────────────── */
.blog-archive-sec { padding: 64px 5% 80px; }
.blog-featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: center;
  background: #fff;
  border: 1px solid rgba(0,0,0,.07);
  border-radius: 24px;
  overflow: hidden;
  margin-bottom: 56px;
  transition: var(--transition);
}
.blog-featured:hover { box-shadow: var(--shadow-md); }
.bf-thumb-link { display: block; height: 100%; min-height: 360px; }
.bf-thumb {
  height: 100%;
  min-height: 360px;
  overflow: hidden;
  background: var(--navy);
}
.bf-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.blog-featured:hover .bf-thumb img { transform: scale(1.03); }
.bf-thumb-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--navy);
}
.bf-body { padding: 52px 52px 52px 0; }
.bf-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 13px;
  font-weight: 300;
  color: var(--stone);
  flex-wrap: wrap;
}
.bf-cat {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
}
.bf-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--stone-light);
}
.bf-title {
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 14px;
  letter-spacing: -.02em;
  line-height: 1.2;
}
.bf-title a { color: inherit; transition: color .2s; }
.bf-title a:hover { color: var(--gold); }
.bf-excerpt { font-size: 15px; font-weight: 300; color: var(--stone); line-height: 1.8; margin-bottom: 24px; }
.bf-read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--gold);
  transition: gap .2s;
}
.bf-read-more:hover { gap: 12px; }

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}
.blog-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,.06);
  transition: var(--transition);
}
.blog-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.bc-thumb-link { display: block; overflow: hidden; }
.bc-thumb {
  height: 200px;
  overflow: hidden;
  background: var(--navy);
}
.bc-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.bc-thumb-placeholder {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--navy);
}
.blog-card:hover .bc-thumb img { transform: scale(1.04); }
.bc-body { padding: 24px; }
.bc-cat {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  margin-bottom: 8px;
}
.bc-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 8px;
  line-height: 1.3;
  letter-spacing: -.01em;
}
.bc-title a { color: inherit; transition: color .2s; }
.bc-title a:hover { color: var(--gold); }
.bc-excerpt { font-size: 14px; font-weight: 300; color: var(--stone); line-height: 1.7; margin-bottom: 14px; }
.bc-meta { font-size: 12px; font-weight: 300; color: var(--stone-light); }

.archive-count {
  font-size: 14px;
  font-weight: 300;
  color: var(--stone);
  margin-bottom: 32px;
}
.archive-count strong { color: var(--charcoal); font-weight: 600; }
.no-posts-emoji {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201,168,76,.06);
  border-radius: 50%;
  margin-bottom: 20px;
}
.no-posts, .no-results {
  text-align: center;
  padding: 80px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.no-posts h3, .no-results h3 {
  font-size: 28px;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 12px;
}
.no-posts p, .no-results p {
  font-size: 15px;
  font-weight: 300;
  color: var(--stone);
  max-width: 420px;
}
.pagination-wrap { padding: 48px 0 0; }
.pagination-wrap .nav-links { display: flex; justify-content: center; gap: 8px; }
.pagination-wrap .page-numbers {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-size: 14px;
  color: var(--stone);
  border: 1px solid rgba(0,0,0,.1);
  transition: var(--transition);
  text-decoration: none;
}
.pagination-wrap .page-numbers:hover,
.pagination-wrap .page-numbers.current {
  background: var(--gold-dim);
  border-color: var(--gold-line);
  color: var(--gold);
}
.archive-cta-sec { background: var(--navy); padding: 80px 5%; }
.archive-cta {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}
.archive-cta h2 {
  font-size: clamp(28px, 4vw, 46px);
  color: #FAFAF8;
  margin-bottom: 14px;
}
.archive-cta h2 em { font-style: italic; color: var(--gold); }
.archive-cta p { font-size: 16px; font-weight: 300; color: rgba(255,255,255,.42); margin-bottom: 32px; line-height: 1.75; }

/* ─── SINGLE POST ────────────────────────────────────── */
.single-hero {
  background: var(--navy);
  padding: 80px 5% 56px;
  position: relative;
  overflow: hidden;
}
.single-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: .04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px;
}
.single-hero-inner { position: relative; z-index: 1; }
.single-cat {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  margin-bottom: 16px;
}
.single-title {
  font-size: clamp(28px, 5vw, 54px);
  font-weight: 600;
  color: #FAFAF8;
  letter-spacing: -.03em;
  line-height: 1.1;
  margin-bottom: 28px;
  max-width: 660px;
}
.single-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.single-author { display: flex; align-items: center; gap: 10px; }
.sa-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--navy-2);
  border: 1px solid var(--gold-line);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}
.sa-name { font-size: 14px; font-weight: 500; color: #FAFAF8; }
.sa-role { font-size: 12px; font-weight: 300; color: rgba(255,255,255,.35); }
.single-meta-divider {
  width: 1px;
  height: 24px;
  background: rgba(255,255,255,.12);
}
.single-date, .single-read-time {
  font-size: 13px;
  font-weight: 300;
  color: rgba(255,255,255,.38);
  display: flex;
  align-items: center;
  gap: 6px;
}
.single-thumb-wrap { padding: 0 5%; max-width: calc(1200px + 10%); margin: 0 auto; }
.single-thumb {
  max-height: 500px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.single-thumb img { width: 100%; height: 100%; object-fit: cover; }
.single-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 60px;
  padding-top: 56px;
  padding-bottom: 80px;
  align-items: start;
}
.single-content {}
.entry-content {
  font-size: 17px;
  font-weight: 300;
  color: #2a2a2a;
  line-height: 1.9;
}
.entry-content h2, .entry-content h3 {
  font-family: var(--serif);
  color: var(--charcoal);
  margin: 40px 0 16px;
}
.entry-content h2 { font-size: 30px; letter-spacing: -.02em; }
.entry-content h3 { font-size: 22px; letter-spacing: -.01em; }
.entry-content p { margin-bottom: 20px; }
.entry-content a { color: var(--gold); text-decoration: underline; text-decoration-color: var(--gold-line); }
.entry-content blockquote {
  border-left: 3px solid var(--gold);
  padding: 20px 28px;
  background: var(--gold-dim);
  border-radius: 0 12px 12px 0;
  font-family: var(--serif);
  font-size: 20px;
  font-style: italic;
  color: var(--charcoal);
  margin: 32px 0;
  line-height: 1.65;
}
.entry-content ul, .entry-content ol {
  padding-left: 24px;
  margin-bottom: 20px;
  list-style: initial;
}
.entry-content ol { list-style: decimal; }
.entry-content li { margin-bottom: 8px; }
.entry-content img { border-radius: var(--radius); margin: 28px 0; box-shadow: var(--shadow-sm); }
.single-tags {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  padding-top: 40px;
  border-top: 1px solid rgba(0,0,0,.08);
  margin-top: 48px;
}
.single-tags-label { font-size: 13px; font-weight: 500; color: var(--stone); }
.single-tag {
  font-size: 12px;
  font-weight: 400;
  color: var(--stone);
  padding: 5px 14px;
  border: 1px solid rgba(0,0,0,.1);
  border-radius: var(--radius-pill);
  text-decoration: none;
  transition: var(--transition);
}
.single-tag:hover { border-color: var(--gold-line); color: var(--gold); }
.single-share {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 24px;
  flex-wrap: wrap;
}
.single-share-label { font-size: 13px; font-weight: 500; color: var(--stone); }
.single-share-btns { display: flex; gap: 8px; }
.share-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(0,0,0,.1);
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--stone);
  transition: var(--transition);
  text-decoration: none;
  cursor: pointer;
}
.share-btn:hover {
  border-color: var(--gold-line);
  color: var(--gold);
  background: var(--gold-dim);
}

/* Sidebar */
.single-sidebar {}
.sidebar-cta-card {
  background: var(--navy);
  border: 1px solid var(--gold-line);
  border-radius: 20px;
  padding: 32px 28px;
  margin-bottom: 28px;
  position: sticky;
  top: 100px;
}
.sidebar-cta-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(201,168,76,.1);
  border: 1px solid var(--gold-line);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.sidebar-cta-card h3 {
  font-size: 20px;
  font-weight: 600;
  color: #FAFAF8;
  margin-bottom: 12px;
}
.sidebar-cta-card p {
  font-size: 14px;
  font-weight: 300;
  color: rgba(255,255,255,.42);
  line-height: 1.75;
  margin-bottom: 20px;
}
.sidebar-widget {
  background: #fff;
  border: 1px solid rgba(0,0,0,.07);
  border-radius: 16px;
  padding: 24px;
  margin-bottom: 20px;
}
.sidebar-widget-title {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 16px;
}
.sidebar-cat-list li { border-bottom: 1px solid rgba(0,0,0,.06); }
.sidebar-cat-list li:last-child { border-bottom: none; }
.sidebar-cat-list a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  font-size: 14px;
  color: var(--charcoal);
  transition: color .2s;
}
.sidebar-cat-list a:hover { color: var(--gold); }
.sidebar-cat-list span {
  font-size: 12px;
  color: var(--stone);
  background: var(--warm);
  padding: 2px 8px;
  border-radius: 100px;
}
.related-sec { background: var(--warm); padding: 80px 5%; border-top: 1px solid rgba(0,0,0,.06); }
.related-title {
  font-size: clamp(26px, 3.5vw, 40px);
  color: var(--charcoal);
  margin-bottom: 40px;
}
.related-title em { font-style: italic; color: var(--gold); }

/* ─── SEARCH PAGE ────────────────────────────────────── */
.search-hero-form { margin-top: 28px; max-width: 580px; margin-left: auto; margin-right: auto; }
.search-hero-bar {
  display: flex;
  background: rgba(255,255,255,.07);
  border: 1px solid var(--gold-line);
  border-radius: var(--radius-pill);
  overflow: hidden;
  transition: border-color .2s;
}
.search-hero-bar:focus-within { border-color: var(--gold); }
.search-hero-bar input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 16px 24px;
  font-size: 15px;
  font-weight: 300;
  color: #FAFAF8;
}
.search-hero-bar input::placeholder { color: rgba(255,255,255,.28); }
.search-hero-bar button {
  background: linear-gradient(135deg, #C9A84C, #dfc278, #b8934a);
  color: var(--navy);
  border: none;
  padding: 14px 24px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: opacity .2s;
}
.search-hero-bar button:hover { opacity: .88; }
.search-topics {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 18px;
}
.topic-pill {
  font-size: 12px;
  color: rgba(255,255,255,.42);
  padding: 6px 14px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-pill);
  transition: var(--transition);
  text-decoration: none;
}
.topic-pill:hover { border-color: var(--gold-line); color: var(--gold); }
.search-results-sec { padding: 56px 5% 80px; }
.results-header { margin-bottom: 32px; }
.results-count { font-size: 14px; font-weight: 300; color: var(--stone); }
.results-count strong { color: var(--charcoal); font-weight: 600; }
.search-results-list { display: flex; flex-direction: column; gap: 16px; }
.search-result-row {
  background: #fff;
  border: 1px solid rgba(0,0,0,.07);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: var(--transition);
}
.search-result-row:hover { box-shadow: var(--shadow-sm); transform: translateY(-1px); }
.sr-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--gold-dim);
  border: 1px solid var(--gold-line);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.sr-body { flex: 1; }
.sr-cat {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  margin-bottom: 6px;
}
.sr-title {
  font-size: 19px;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 8px;
  line-height: 1.25;
}
.sr-title a { color: inherit; transition: color .2s; }
.sr-title a:hover { color: var(--gold); }
.sr-excerpt { font-size: 14px; font-weight: 300; color: var(--stone); line-height: 1.65; margin-bottom: 8px; }
.sr-meta { font-size: 12px; color: var(--stone-light); font-weight: 300; }

/* ─── 404 PAGE ───────────────────────────────────────── */
.error-404-main {
  min-height: calc(100vh - 76px);
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 5%;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.err-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 600px; height: 400px;
  background: radial-gradient(ellipse, rgba(201,168,76,.06) 0%, transparent 70%);
  pointer-events: none;
}
.err-grain {
  position: absolute;
  inset: 0;
  opacity: .04;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px;
}
.err-inner { position: relative; z-index: 1; max-width: 560px; }
.err-num {
  font-family: var(--serif);
  font-size: clamp(100px, 18vw, 180px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -.06em;
  animation: shimmer 5s linear infinite, float 5s ease-in-out infinite;
  margin-bottom: 0;
}
.err-title {
  font-family: var(--serif);
  font-size: clamp(24px, 3.5vw, 40px);
  font-weight: 600;
  color: #FAFAF8;
  margin-bottom: 16px;
  font-style: italic;
}
.err-sub {
  font-size: 16px;
  font-weight: 300;
  color: rgba(255,255,255,.42);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 440px;
  margin-left: auto;
  margin-right: auto;
}
.err-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 40px; }
.err-links { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; margin-bottom: 36px; }
.err-link {
  font-size: 13px;
  color: rgba(255,255,255,.36);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color .2s;
}
.err-link:hover { color: var(--gold); }
.err-search-wrap {
  display: flex;
  background: rgba(255,255,255,.06);
  border: 1px solid var(--gold-line);
  border-radius: var(--radius-pill);
  overflow: hidden;
}
.err-search-wrap input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 14px 20px;
  font-size: 15px;
  font-weight: 300;
  color: #FAFAF8;
}
.err-search-wrap input::placeholder { color: rgba(255,255,255,.25); }
.err-search-wrap button {
  background: linear-gradient(135deg, #C9A84C, #dfc278, #b8934a);
  color: var(--navy);
  border: none;
  padding: 12px 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ─── LEGAL PAGES ────────────────────────────────────── */
.legal-page-wrap { padding: 64px 5% 100px; }
.legal-content {
  background: #fff;
  border: 1px solid rgba(0,0,0,.07);
  border-radius: 24px;
  padding: 56px;
  box-shadow: var(--shadow-sm);
  font-size: 16px;
  font-weight: 300;
  color: #2a2a2a;
  line-height: 1.88;
}
.legal-content h2 {
  font-size: 26px;
  color: var(--charcoal);
  margin: 40px 0 14px;
}
.legal-content h3 { font-size: 20px; margin: 30px 0 10px; }
.legal-content p { margin-bottom: 18px; }
.legal-content a { color: var(--gold); }
.legal-content ul { padding-left: 24px; margin-bottom: 18px; list-style: disc; }

/* ─── MODAL ──────────────────────────────────────────── */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(13,13,13,.8);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
}
.modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.modal-box {
  background: var(--navy);
  border: 1px solid var(--gold-line);
  border-radius: 24px;
  padding: 40px;
  max-width: 640px;
  width: 100%;
  position: relative;
  box-shadow: 0 40px 100px rgba(0,0,0,.6);
  transform: scale(.95) translateY(20px);
  transition: transform .35s cubic-bezier(.4,0,.2,1);
  max-height: 90vh;
  overflow-y: auto;
}
.modal-overlay.open .modal-box { transform: scale(1) translateY(0); }
.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.5);
  cursor: pointer;
  transition: var(--transition);
}
.modal-close:hover { background: rgba(255,255,255,.12); color: #FAFAF8; }
.modal-header { margin-bottom: 24px; }
.modal-header h2 {
  font-size: 30px;
  color: #FAFAF8;
  margin-bottom: 10px;
}
.modal-header h2 em { font-style: italic; color: var(--gold); }
.modal-header p { font-size: 15px; font-weight: 300; color: rgba(255,255,255,.42); line-height: 1.7; }
.modal-calendly iframe {
  width: 100%;
  height: 520px;
  border: none;
  border-radius: 12px;
}
.modal-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 20px 0;
  color: rgba(255,255,255,.25);
  font-size: 13px;
}
.modal-divider::before, .modal-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(255,255,255,.08);
}
.modal-direct { display: flex; gap: 12px; }
.modal-contact-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 12px;
  font-size: 14px;
  color: rgba(255,255,255,.65);
  text-decoration: none;
  transition: var(--transition);
}
.modal-contact-btn:hover {
  border-color: var(--gold-line);
  color: var(--gold);
  background: var(--gold-dim);
}

/* ─── EXIT POPUP ─────────────────────────────────────── */
.exit-popup {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(13,13,13,.75);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
}
.exit-popup.open {
  opacity: 1;
  pointer-events: all;
}
.exit-popup-box {
  background: var(--navy);
  border: 1px solid var(--gold-line);
  border-radius: 24px;
  padding: 44px 40px;
  max-width: 480px;
  width: 100%;
  text-align: center;
  position: relative;
  box-shadow: 0 40px 100px rgba(0,0,0,.6);
  transform: scale(.95);
  transition: transform .35s cubic-bezier(.4,0,.2,1);
}
.exit-popup.open .exit-popup-box { transform: scale(1); }
.exit-close {
  position: absolute;
  top: 14px; right: 14px;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,.06);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.4);
  cursor: pointer;
  transition: var(--transition);
}
.exit-close:hover { color: #FAFAF8; background: rgba(255,255,255,.12); }
.exit-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.exit-popup-box h3 {
  font-size: 26px;
  font-weight: 600;
  color: #FAFAF8;
  margin-bottom: 12px;
  line-height: 1.2;
}
.exit-popup-box p {
  font-size: 15px;
  font-weight: 300;
  color: rgba(255,255,255,.42);
  line-height: 1.7;
  margin-bottom: 28px;
}
.exit-cta { width: 100%; justify-content: center; margin-bottom: 12px; }
.exit-dismiss {
  background: none;
  border: none;
  font-size: 13px;
  color: rgba(255,255,255,.25);
  cursor: pointer;
  padding: 8px;
  transition: color .2s;
  width: 100%;
}
.exit-dismiss:hover { color: rgba(255,255,255,.5); }

/* ─── COOKIE BANNER ──────────────────────────────────── */
.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  z-index: 8888;
  max-width: 700px;
  margin: 0 auto;
  background: var(--charcoal);
  border: 1px solid var(--gold-line);
  border-radius: 16px;
  padding: 16px 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,.5);
}
.cookie-banner.shown { display: block; }
.cookie-inner {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.cookie-inner p {
  flex: 1;
  font-size: 13px;
  font-weight: 300;
  color: rgba(255,255,255,.5);
  min-width: 180px;
}
.cookie-inner a { color: var(--gold); }
.cookie-btns { display: flex; gap: 8px; }
.cookie-accept {
  background: linear-gradient(135deg, #C9A84C, #dfc278, #b8934a);
  color: var(--navy);
  border: none;
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: opacity .2s;
}
.cookie-accept:hover { opacity: .88; }
.cookie-decline {
  font-size: 13px;
  color: rgba(255,255,255,.35);
  padding: 8px 14px;
  text-decoration: none;
  transition: color .2s;
}
.cookie-decline:hover { color: var(--gold); }

/* ─── RESPONSIVE ─────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { display: none; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-photo { height: 360px; }
  .about-photo-badge { display: none; }
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .results-ribbon-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .blog-featured { grid-template-columns: 1fr; }
  .bf-body { padding: 32px; }
  .bf-thumb-link { min-height: 280px; }
  .bf-thumb { min-height: 280px; }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .single-layout { grid-template-columns: 1fr; }
  .single-sidebar { display: none; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .blog-preview-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .hero-h1 { font-size: 34px; }
  .svc-grid { grid-template-columns: 1fr; }
  .results-ribbon-grid { grid-template-columns: 1fr 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .testi-card { padding: 32px 24px; }
  .about-stats { grid-template-columns: repeat(3, 1fr); }
  .cf-row { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .blog-preview-grid { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr; }
  .modal-box { padding: 28px 20px; }
  .exit-popup-box { padding: 32px 24px; }
  .legal-content { padding: 32px 24px; }
  .contact-form-wrap { padding: 28px 24px; }
  .modal-direct { flex-direction: column; }
}

/* ─── SCREEN READER ──────────────────────────────────── */
.screen-reader-text {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0,0,0,0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

/* ─── LOGO IMAGES ─────────────────────────────────────── */
.header-logo-img {
  height: 44px;
  width: auto;
  max-width: 180px;
  display: block;
  object-fit: contain;
}
.footer-logo-img {
  height: 48px;
  width: auto;
  max-width: 180px;
  display: block;
  object-fit: contain;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);  /* make logo white on dark footer */
}
.footer-logo { display: inline-block; }

/* ─── HERO IMAGE FIX ──────────────────────────────────── */
.hero-bg {
  position: absolute !important;
  inset: 0 !important;
  z-index: 0 !important;
  overflow: hidden;
}
.hero-bg-img {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center top !important;
}

/* ─── NAV CTA HOVER FIX ───────────────────────────────── */
.main-nav .nav-cta:hover,
.main-nav .nav-cta:focus-visible {
  background: #e8c96a !important;
  color: #0D0D0D !important;
  box-shadow: 0 6px 28px rgba(201, 168, 76, .55) !important;
  transform: translateY(-2px) !important;
}

/* ─── LEGAL SECTION FIX ───────────────────────────────── */
.legal-section {
  padding: 60px 0 100px;
  background: var(--warm-white, #FAFAF8);
}
.legal-content {
  max-width: 780px;
  margin: 0 auto;
  background: #fff;
  border-radius: 12px;
  padding: 56px 64px;
  box-shadow: 0 2px 40px rgba(0,0,0,.06);
  color: #1a1a1a;
  line-height: 1.75;
}
.legal-content h2 {
  font-family: var(--font-serif, 'Cormorant Garamond', serif);
  font-size: 26px;
  font-weight: 600;
  color: #0D0D0D;
  margin: 48px 0 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid #f0ede8;
}
.legal-content h2:first-child { margin-top: 0; }
.legal-content h3 {
  font-size: 18px;
  font-weight: 600;
  color: #0D0D0D;
  margin: 28px 0 10px;
}
.legal-content p { margin-bottom: 18px; color: #3a3a3a; font-size: 16px; }
.legal-content a { color: var(--gold, #C9A84C); text-decoration: underline; text-underline-offset: 3px; }
.legal-content ul {
  padding-left: 22px;
  margin-bottom: 18px;
  list-style: disc;
}
.legal-content ul li {
  margin-bottom: 8px;
  color: #3a3a3a;
  font-size: 16px;
}
.page-hero-title {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 600;
  font-family: var(--font-serif, 'Cormorant Garamond', serif);
  color: #FAFAF8;
  margin-top: 16px;
  letter-spacing: -.02em;
}
.page-hero-sub {
  font-size: 15px;
  color: rgba(255,255,255,.45);
  margin-top: 8px;
}

/* ─── CONTACT FORM SUCCESS STATE ──────────────────────── */
.cf-success-state {
  text-align: center;
  padding: 48px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.cf-success-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(201, 168, 76, .1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
}
.cf-success-state h3 {
  font-family: var(--font-serif, 'Cormorant Garamond', serif);
  font-size: 28px;
  font-weight: 600;
  color: #1a1a1a !important;
  margin: 0;
}
.cf-success-state p {
  font-size: 15px;
  color: #333333 !important;
  max-width: 380px;
  margin: 0;
  line-height: 1.6;
}
.cf-success-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
}

/* ─── QUIZ SECTION ────────────────────────────────────── */
.quiz-sec {
  background: #0D0D0D;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.quiz-sec::before {
  content: '';
  position: absolute;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(201,168,76,.06) 0%, transparent 65%);
  pointer-events: none;
}
.quiz-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}
.quiz-left .sec-tag { justify-content: flex-start; }
.quiz-h2 {
  font-family: var(--font-serif, 'Cormorant Garamond', serif);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 600;
  color: #FAFAF8;
  line-height: 1.1;
  margin: 18px 0 16px;
  letter-spacing: -.03em;
}
.quiz-h2 em { font-style: italic; color: var(--gold, #C9A84C); }
.quiz-desc {
  font-size: 16px;
  color: rgba(255,255,255,.55);
  line-height: 1.7;
  max-width: 380px;
}
.quiz-benefits {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.quiz-benefits li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(255,255,255,.7);
}
.quiz-benefits li svg { flex-shrink: 0; color: var(--gold, #C9A84C); }
.quiz-card {
  background: #0F1923;
  border: 1px solid rgba(201,168,76,.15);
  border-radius: 16px;
  padding: 40px;
  position: relative;
}
.quiz-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(201,168,76,.04) 0%, transparent 60%);
  pointer-events: none;
}
.quiz-step { display: none; }
.quiz-step.active { display: block; }
.quiz-step-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold, #C9A84C);
  margin-bottom: 10px;
}
.quiz-question {
  font-size: 18px;
  font-weight: 500;
  color: #FAFAF8;
  margin-bottom: 24px;
  line-height: 1.4;
}
.quiz-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.quiz-option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 10px;
  background: transparent;
  color: rgba(255,255,255,.75);
  font-size: 14px;
  font-family: inherit;
  cursor: pointer;
  transition: border-color .2s, background .2s, color .2s;
  text-align: left;
  width: 100%;
}
.quiz-option:hover {
  border-color: rgba(201,168,76,.5);
  background: rgba(201,168,76,.06);
  color: #FAFAF8;
}
.quiz-option.selected {
  border-color: var(--gold, #C9A84C);
  background: rgba(201,168,76,.1);
  color: #FAFAF8;
}
.quiz-option-dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1.5px solid currentColor;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s, border-color .2s;
}
.quiz-option.selected .quiz-option-dot {
  background: var(--gold, #C9A84C);
  border-color: var(--gold, #C9A84C);
}
.quiz-option.selected .quiz-option-dot::after {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #0D0D0D;
}
.quiz-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 28px;
  gap: 12px;
}
.quiz-back {
  background: none;
  border: none;
  color: rgba(255,255,255,.4);
  font-size: 13px;
  cursor: pointer;
  padding: 8px 0;
  transition: color .2s;
}
.quiz-back:hover { color: #FAFAF8; }
.quiz-progress {
  display: flex;
  gap: 5px;
}
.quiz-progress-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,.15);
  transition: background .3s;
}
.quiz-progress-dot.done { background: var(--gold, #C9A84C); }
.quiz-result {
  text-align: center;
  padding: 8px 0;
}
.quiz-result-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(201,168,76,.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.quiz-result h3 {
  font-family: var(--font-serif, 'Cormorant Garamond', serif);
  font-size: 24px;
  font-weight: 600;
  color: #FAFAF8;
  margin-bottom: 10px;
}
.quiz-result p {
  font-size: 14px;
  color: rgba(255,255,255,.6);
  line-height: 1.65;
  margin-bottom: 24px;
}
.quiz-result-cta {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}

/* ─── FAQ SECTION ────────────────────────────────────── */
.faq-sec { background: var(--warm); padding: 100px 5%; }
.faq-header {
  max-width: 600px;
  margin: 0 auto 60px;
  text-align: center;
}
.faq-h2 {
  font-size: clamp(32px, 4vw, 52px);
  color: var(--charcoal);
  margin-bottom: 16px;
}
.faq-h2 em { font-style: italic; color: var(--gold); }
.faq-sub { font-size: 16px; font-weight: 300; color: #3a3a3a; line-height: 1.75; }
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}
.faq-item {
  background: #fff;
  border: 1px solid rgba(0,0,0,.07);
  border-radius: 16px;
  padding: 24px;
  transition: var(--transition);
}
.faq-item:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.faq-q {
  font-size: 15px;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 8px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.faq-q::before {
  content: 'Q';
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--gold-dim);
  border: 1px solid var(--gold-line);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 600;
  color: var(--gold);
}
.faq-a {
  font-size: 14px;
  font-weight: 300;
  color: var(--stone);
  line-height: 1.7;
}

/* ─── MOBILE IMPROVEMENTS ────────────────────────────── */
@media (max-width: 480px) {
  .hero-sec { min-height: 100svh; }
  .hero-badge { font-size: 11px; padding: 6px 14px; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn-gold,
  .hero-ctas .btn-ghost { width: 100%; justify-content: center; text-align: center; }
  .hero-trust p { font-size: 12px; }
  .trust-avatars img { width: 30px; height: 30px; }

  .about-stats { grid-template-columns: 1fr; gap: 12px; }
  .stat-box { padding: 20px; }

  .svc-card { padding: 24px 20px; }

  .results-ribbon { padding: 48px 0; }
  .results-ribbon-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .rr-num { font-size: 36px; }

  .testi-card { padding: 28px 20px; }
  .testi-quote { font-size: 15px; }

  .cta-band { padding: 64px 0; }
  .cta-band-btns { flex-direction: column; }
  .cta-band-btns .btn-gold,
  .cta-band-btns .btn-ghost { width: 100%; justify-content: center; }

  .blog-preview-grid { grid-template-columns: 1fr; }

  .cf-row { grid-template-columns: 1fr; }
  .contact-grid { gap: 40px; }

  .quiz-inner { grid-template-columns: 1fr; gap: 40px; }
  .quiz-left { text-align: center; }
  .quiz-left .sec-tag { justify-content: center; }
  .quiz-desc { max-width: 100%; }
  .quiz-card { padding: 28px 20px; }

  .faq-grid { grid-template-columns: 1fr; }

  .footer-main { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }

  .legal-content { padding: 32px 20px; }

  .modal-box { border-radius: 16px 16px 0 0; max-height: 90vh; overflow-y: auto; }
  .exit-popup-box { padding: 28px 20px; margin: 12px; }
  .cookie-inner { flex-wrap: wrap; }
  .cookie-btns { width: 100%; justify-content: flex-end; }

  .page-hero { padding: 100px 5% 60px; }
  .page-hero-title { font-size: 32px; }

  .single-content { padding: 0 4%; }
  .archive-hero { padding: 80px 5% 48px; }
}

@media (max-width: 600px) {
  .quiz-inner { grid-template-columns: 1fr; gap: 40px; }
  .quiz-benefits { display: none; }
  .process-steps { grid-template-columns: 1fr; }
  .cta-band-btns { flex-wrap: wrap; justify-content: center; }
  .sec-tag { font-size: 10px; }
  .blog-grid { grid-template-columns: 1fr; }
  .filter-bar { overflow-x: auto; flex-wrap: nowrap; padding-bottom: 4px; }
  .testi-slide { width: 100%; }
  .modal-calendly iframe { min-height: 480px; }
  .contact-form-wrap { padding: 28px 20px; }
}

@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; padding-top: 30px; padding-bottom: 60px; }
  .hero-visual { display: none; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .blog-preview-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-featured { grid-template-columns: 1fr; gap: 24px; }
  .bf-body { padding: 28px; }
  .quiz-inner { grid-template-columns: 1fr; gap: 48px; }
  .quiz-left { text-align: center; }
  .quiz-left .sec-tag { justify-content: center; }
  .quiz-desc { max-width: 540px; margin: 0 auto; }
  .quiz-benefits { align-items: center; }
  .faq-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .hero-inner { gap: 30px; padding-top: 20px; padding-bottom: 40px; }
  .hero-h1 { font-size: clamp(28px, 4vw, 48px); }
  .about-grid { gap: 32px; }
  .svc-grid { grid-template-columns: 1fr; }
  .contact-grid { gap: 32px; }
  .blog-preview-grid { grid-template-columns: 1fr; }
  .hero-bg-img { object-position: right center; }
  .cf-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 28px 20px; }
  .faq-grid { grid-template-columns: 1fr; }
  .faq-item { padding: 20px; }
}

@media (max-width: 600px) {
  .quiz-inner { grid-template-columns: 1fr; gap: 40px; }
  .quiz-benefits { display: none; }
  .process-steps { grid-template-columns: 1fr; }
  .cta-band-btns { flex-wrap: wrap; justify-content: center; }
  .sec-tag { font-size: 10px; }
  .blog-grid { grid-template-columns: 1fr; }
  .filter-bar { overflow-x: auto; flex-wrap: nowrap; padding-bottom: 4px; }
  .testi-slide { width: 100%; }
  .modal-calendly iframe { min-height: 480px; }
  .contact-form-wrap { padding: 28px 20px; }
}

/* Touch device tap highlights */
@media (hover: none) {
  .quiz-option:hover {
    border-color: rgba(255,255,255,.1);
    background: transparent;
    color: rgba(255,255,255,.75);
  }
  .quiz-option.selected {
    border-color: var(--gold, #C9A84C);
    background: rgba(201,168,76,.1);
    color: #FAFAF8;
  }
  .nav-cta { -webkit-tap-highlight-color: transparent; }
}
