
/* ══════════════════════════════════════════════
   CEO WELCOME MODAL
══════════════════════════════════════════════ */
.ceo-welcome-overlay {
  position: fixed;
  inset: 0;
  z-index: 5000;
  background: rgba(8,6,3,0.82);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 1;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
.ceo-welcome-overlay.closing {
  opacity: 0;
  pointer-events: none;
}
.ceo-welcome-overlay.hidden {
  display: none;
}

/* Site behind it gets gently pushed back */
body.ceo-welcome-active {
  overflow: hidden;
}
body.ceo-welcome-active nav,
body.ceo-welcome-active #home,
body.ceo-welcome-active section,
body.ceo-welcome-active footer,
body.ceo-welcome-active .subscribe-strip {
  filter: blur(2px);
}

.ceo-welcome-card {
  background: var(--dark-2, #1a1a1a);
  border: 1px solid rgba(200,148,42,0.25);
  border-radius: 22px;
  max-width: 760px;
  width: 100%;
  display: grid;
  grid-template-columns: 280px 1fr;
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0,0,0,0.6);
  animation: ceoCardIn 0.6s cubic-bezier(0.22,1,0.36,1) both;
}
body.light .ceo-welcome-card {
  background: #fff;
  border-color: rgba(200,148,42,0.2);
}

@keyframes ceoCardIn {
  from { opacity: 0; transform: scale(0.9) translateY(40px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}

.ceo-welcome-photo {
  position: relative;
  min-height: 100%;
}
.ceo-welcome-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
  display: block;
}
.ceo-welcome-photo::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to right, transparent 60%, rgba(26,26,26,0.4) 100%);
}
body.light .ceo-welcome-photo::after {
  background: linear-gradient(to right, transparent 60%, rgba(255,255,255,0.5) 100%);
}

.ceo-welcome-body {
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
}
.ceo-welcome-label {
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold, #C8942A);
  font-weight: 700;
  margin-bottom: 14px;
}
.ceo-welcome-name {
  font-family: 'Playfair Display', serif;
  font-size: 30px;
  font-weight: 700;
  color: var(--white, #faf8f5);
  margin-bottom: 4px;
  line-height: 1.2;
}
body.light .ceo-welcome-name { color: #111; }
.ceo-welcome-role {
  font-size: 13px;
  color: rgba(200,148,42,0.9);
  font-weight: 600;
  margin-bottom: 10px;
}
.ceo-welcome-social-proof {
  font-size: 12.5px;
  color: rgba(250,248,245,0.55);
  font-weight: 500;
  margin-bottom: 18px;
  letter-spacing: 0.2px;
}
body.light .ceo-welcome-social-proof { color: rgba(17,17,17,0.5); }
.ceo-welcome-msg {
  font-size: 15px;
  line-height: 1.75;
  color: rgba(250,248,245,0.78);
  margin-bottom: 18px;
}
body.light .ceo-welcome-msg { color: #444; }
.ceo-welcome-signoff {
  font-size: 14px;
  font-style: italic;
  color: rgba(250,248,245,0.6);
  margin-bottom: 26px;
  line-height: 1.6;
}
body.light .ceo-welcome-signoff { color: #666; }
.ceo-welcome-signoff strong {
  font-family: 'Playfair Display', serif;
  font-style: normal;
  color: var(--gold, #C8942A);
  font-size: 16px;
}

.ceo-welcome-checkbox {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 13px;
  color: rgba(250,248,245,0.55);
  cursor: pointer;
  margin-bottom: 20px;
  user-select: none;
}
body.light .ceo-welcome-checkbox { color: rgba(17,17,17,0.5); }
.ceo-welcome-checkbox input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--gold, #C8942A);
  cursor: pointer;
  flex-shrink: 0;
}

.ceo-welcome-actions {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.ceo-welcome-btn {
  background: var(--gold, #C8942A);
  color: #111;
  border: none;
  padding: 15px 24px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 14.5px;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  transition: background 0.2s, transform 0.2s;
  width: 100%;
}
.ceo-welcome-btn:hover {
  background: var(--gold-light, #E8B84B);
  transform: translateY(-1px);
}
.ceo-welcome-call {
  text-align: center;
  font-size: 13px;
  color: rgba(250,248,245,0.5);
  text-decoration: none;
  transition: color 0.2s;
}
.ceo-welcome-call:hover { color: var(--gold, #C8942A); }
body.light .ceo-welcome-call { color: rgba(17,17,17,0.45); }

/* ── Responsive ── */
@media (max-width: 680px) {
  .ceo-welcome-card {
    grid-template-columns: 1fr;
    max-width: 420px;
  }
  .ceo-welcome-photo {
    width: 100%;
    aspect-ratio: 4 / 3;
    min-height: unset;
    max-height: unset;
  }
  .ceo-welcome-photo img {
    object-position: center 12%;
  }
  .ceo-welcome-photo::after {
    background: linear-gradient(to bottom, transparent 50%, rgba(26,26,26,0.7) 100%);
  }
  body.light .ceo-welcome-photo::after {
    background: linear-gradient(to bottom, transparent 50%, rgba(255,255,255,0.7) 100%);
  }
  .ceo-welcome-body { padding: 28px 24px; }
  .ceo-welcome-name { font-size: 24px; }
  .ceo-welcome-msg { font-size: 14px; }
}
@media (max-width: 380px) {
  .ceo-welcome-overlay { padding: 12px; }
  .ceo-welcome-body { padding: 22px 18px; }
}
