/* ═══════════════════════════════════════════════════════════════
   BOSSWELL BY VIANA™  —  Shared Stylesheet v2
   Two brands. One movement. Nine pages.
   ═══════════════════════════════════════════════════════════════ */

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

/* ── TOKENS ─────────────────────────────────────────────────── */
:root {
  --purple:        #3d1a6e;
  --purple-mid:    #5a2a9a;
  --purple-deep:   #280f4a;
  --purple-glass:  rgba(61,26,110,0.08);
  --lavender:      #ede8f7;
  --lavender-mid:  #d4cce8;
  --gold:          #c9922a;
  --gold-light:    #e8b84b;
  --gold-pale:     #fdf6e8;
  --gold-glass:    rgba(201,146,42,0.12);
  --flame:         #d45b1a;
  --flame-light:   #e8823f;
  --flame-pale:    #fdf0e8;
  --teal:          #1a6e5a;
  --teal-pale:     #e8f7f3;
  --cream:         #faf8f5;
  --ink:           #1a1228;
  --muted:         #6b6080;
  --border:        rgba(61,26,110,0.10);
  --border-light:  rgba(61,26,110,0.06);
  --white:         #ffffff;
}

/* ── RESET ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Jost', sans-serif;
  background: var(--cream);
  color: var(--ink);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ── GRAIN OVERLAY ──────────────────────────────────────────── */
body::after {
  content: '';
  position: fixed; inset: 0; pointer-events: none; z-index: 9999;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
  opacity: 0.4;
}

/* ── NAVIGATION ─────────────────────────────────────────────── */
.nav {
  position: sticky; top: 0; z-index: 500;
  background: var(--purple-deep);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 52px; height: 68px;
  backdrop-filter: blur(12px);
}
.nav-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px; font-weight: 700;
  color: var(--white); letter-spacing: 0.03em; white-space: nowrap;
  flex-shrink: 0;
}
.nav-brand em { color: var(--gold-light); font-style: italic; }
.nav-links { display: flex; align-items: center; gap: 28px; list-style: none; }
.nav-links a {
  font-size: 11px; font-weight: 500; letter-spacing: 0.11em;
  text-transform: uppercase; color: rgba(255,255,255,0.5);
  transition: color 0.2s; white-space: nowrap;
}
.nav-links a:hover { color: var(--white); }
.nav-links a.active { color: var(--gold-light); }
.nav-cta {
  background: var(--gold); color: var(--purple-deep) !important;
  font-weight: 700 !important; padding: 9px 20px;
  border-radius: 3px; font-size: 11px !important;
  transition: background 0.2s, transform 0.15s !important;
}
.nav-cta:hover { background: var(--gold-light) !important; transform: translateY(-1px); }
.nav-hamburger {
  display: none; background: none; border: none;
  cursor: pointer; padding: 4px; flex-direction: column; gap: 5px;
}
.nav-hamburger span { display: block; width: 22px; height: 1.5px; background: white; transition: all 0.3s; }

/* ── FOOTER ─────────────────────────────────────────────────── */
.footer { background: var(--purple-deep); padding: 72px 52px 36px; }
.footer-inner { max-width: 1120px; margin: 0 auto; }
.footer-grid {
  display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 48px; padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px; font-weight: 700; color: var(--white); margin-bottom: 4px;
}
.footer-brand-name em { color: var(--gold); font-style: normal; }
.footer-tagline {
  font-size: 12px; font-style: italic; line-height: 1.8;
  color: rgba(255,255,255,0.35); margin-bottom: 20px; max-width: 260px;
}
.footer-podcast-link {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 11px; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--flame-light);
  transition: gap 0.2s;
}
.footer-podcast-link:hover { gap: 11px; }
.footer-podcast-link::before { content: '🎙'; font-size: 13px; }
.footer-col h4 {
  font-size: 10px; font-weight: 700; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 16px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.footer-col a { font-size: 13px; color: rgba(255,255,255,0.4); transition: color 0.15s; }
.footer-col a:hover { color: var(--gold-light); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 28px; font-size: 11px; color: rgba(255,255,255,0.2);
}

/* ── PAGE HERO (inner pages) ─────────────────────────────────── */
.page-hero {
  background: var(--purple); padding: 88px 52px;
  text-align: center; position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse at 65% 40%, rgba(201,146,42,0.09) 0%, transparent 65%),
              radial-gradient(ellipse at 20% 80%, rgba(212,91,26,0.05) 0%, transparent 55%);
}
.page-hero::after {
  content: ''; position: absolute;
  bottom: -1px; left: 0; right: 0; height: 72px;
  background: var(--cream);
  clip-path: polygon(0 100%, 100% 20%, 100% 100%);
}
.page-hero-eyebrow {
  display: block; font-size: 10px; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 18px;
}
.page-hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(44px, 7vw, 80px); font-weight: 700;
  color: var(--white); line-height: 1.0; max-width: 860px;
  margin: 0 auto 18px;
}
.page-hero-title em { color: var(--gold-light); font-style: italic; }
.page-hero-sub {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(17px, 2.2vw, 22px); font-style: italic;
  color: rgba(255,255,255,0.5); max-width: 600px; margin: 0 auto;
}

/* ── SECTION UTILITIES ───────────────────────────────────────── */
.wrap { max-width: 1120px; margin: 0 auto; padding: 0 52px; }
.section { padding: 96px 52px; }
.section-inner { max-width: 1120px; margin: 0 auto; }
.section-label {
  display: block; font-size: 10px; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 14px;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 5vw, 64px); font-weight: 700;
  color: var(--purple); line-height: 1.0; margin-bottom: 18px;
}
.section-title em { color: var(--gold); font-style: italic; }
.section-title.light { color: var(--white); }
.section-title.light em { color: var(--gold-light); }
.section-body { font-size: 15px; line-height: 1.9; color: var(--muted); max-width: 580px; }

/* ── BUTTONS ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: 'Jost', sans-serif; font-size: 11px; font-weight: 700;
  letter-spacing: 0.13em; text-transform: uppercase;
  padding: 15px 34px; border-radius: 3px; border: none;
  cursor: pointer; transition: all 0.2s;
}
.btn-primary { background: var(--purple); color: var(--white); box-shadow: 0 6px 28px rgba(61,26,110,0.22); }
.btn-primary:hover { background: var(--purple-mid); transform: translateY(-2px); box-shadow: 0 14px 44px rgba(61,26,110,0.32); }
.btn-gold { background: var(--gold); color: var(--white); box-shadow: 0 6px 28px rgba(201,146,42,0.28); }
.btn-gold:hover { background: var(--gold-light); color: var(--purple); transform: translateY(-2px); }
.btn-flame { background: var(--flame); color: var(--white); box-shadow: 0 6px 28px rgba(212,91,26,0.28); }
.btn-flame:hover { background: var(--flame-light); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--white); border: 1px solid rgba(255,255,255,0.28); }
.btn-ghost:hover { background: rgba(255,255,255,0.07); border-color: rgba(255,255,255,0.55); }
.btn-outline { background: transparent; color: var(--purple); border: 1px solid var(--purple); }
.btn-outline:hover { background: var(--purple); color: var(--white); }

/* ── CARDS ───────────────────────────────────────────────────── */
.card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 18px; padding: 32px 28px;
  box-shadow: 0 2px 16px rgba(61,26,110,0.05);
  transition: transform 0.22s, box-shadow 0.22s;
}
.card:hover { transform: translateY(-5px); box-shadow: 0 18px 52px rgba(61,26,110,0.13); }

/* ── SCARCITY BADGE ──────────────────────────────────────────── */
.scarcity {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(212,91,26,0.1); border: 1px solid rgba(212,91,26,0.25);
  color: var(--flame); font-size: 10px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 6px 14px; border-radius: 100px;
}
.scarcity::before {
  content: ''; width: 5px; height: 5px;
  background: var(--flame); border-radius: 50%;
  animation: pulse 1.6s infinite;
}
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.4;transform:scale(0.7)} }

/* ── EMAIL FORM ──────────────────────────────────────────────── */
.email-form { display: flex; max-width: 440px; }
.email-form input {
  flex: 1; background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18); border-right: none;
  border-radius: 3px 0 0 3px; color: var(--white);
  font-family: 'Jost', sans-serif; font-size: 13px;
  padding: 13px 16px; outline: none; transition: background 0.2s, border-color 0.2s;
}
.email-form input::placeholder { color: rgba(255,255,255,0.35); }
.email-form input:focus { background: rgba(255,255,255,0.13); border-color: rgba(255,255,255,0.4); }
.email-form button {
  background: var(--gold); color: var(--white); border: none;
  font-family: 'Jost', sans-serif; font-size: 11px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 13px 22px; border-radius: 0 3px 3px 0; cursor: pointer;
  transition: background 0.2s; white-space: nowrap;
}
.email-form button:hover { background: var(--gold-light); }
.form-note { font-size: 11px; color: rgba(255,255,255,0.3); margin-top: 9px; }

/* ── FAQ ACCORDION ───────────────────────────────────────────── */
.faq-item { border-bottom: 1px solid var(--border); }
.faq-btn {
  width: 100%; background: none; border: none; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  padding: 22px 0; text-align: left;
  font-family: 'Cormorant Garamond', serif; font-size: 20px;
  font-weight: 700; color: var(--purple); transition: color 0.2s;
}
.faq-btn:hover { color: var(--gold); }
.faq-icon {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--lavender); color: var(--purple);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; flex-shrink: 0; transition: transform 0.3s, background 0.2s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--gold); color: var(--white); }
.faq-answer {
  font-size: 15px; line-height: 1.85; color: var(--muted);
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s ease, padding-bottom 0.3s;
}
.faq-item.open .faq-answer { max-height: 500px; padding-bottom: 22px; }

/* ── SCROLL REVEAL ───────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.72s ease, transform 0.72s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.d1 { transition-delay: 0.1s; }
.d2 { transition-delay: 0.2s; }
.d3 { transition-delay: 0.3s; }
.d4 { transition-delay: 0.4s; }

/* ── SHARED SECTION HEADING UTILITIES ───────────────────────── */
.section-eyebrow {
  display: block;
  font-size: 10px; font-weight: 700; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 16px;
}
.section-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 4vw, 56px); font-weight: 700;
  color: var(--purple); line-height: 1.05; margin-bottom: 20px;
}
.section-heading em { color: var(--gold); font-style: italic; }
.section-body {
  font-size: 15px; line-height: 1.9; color: var(--muted); max-width: 580px;
}

/* ── GRID HELPERS ────────────────────────────────────────────── */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.grid-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }

/* ── RESPONSIVE ──────────────────────────────────────────────── */
@media (max-width: 960px) {
  .nav { padding: 0 20px; }
  .nav-links { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column; position: absolute;
    top: 68px; left: 0; right: 0;
    background: var(--purple-deep); padding: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4); gap: 16px;
  }
  .nav-hamburger { display: flex; }
  .section { padding: 56px 20px; }
  .wrap { padding: 0 20px; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .footer { padding: 48px 20px 28px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .page-hero { padding: 60px 20px 80px; }
  .email-form { flex-direction: column; max-width: 100%; }
  .email-form input { border-right: 1px solid rgba(255,255,255,0.18); border-radius: 3px; border-bottom: none; }
  .email-form button { border-radius: 3px; }
}
@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ── Kit form overrides ─────────────────────────────────────── */
.formkit-form {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
}
.formkit-form .formkit-field input {
  background: rgba(255,255,255,0.08) !important;
  border: 1px solid rgba(255,255,255,0.2) !important;
  border-radius: 6px !important;
  color: var(--white) !important;
  font-family: 'Jost', sans-serif !important;
  font-size: 13px !important;
  padding: 12px 16px !important;
}
.formkit-form .formkit-field input::placeholder { color: rgba(255,255,255,0.4) !important; }
.formkit-form .formkit-submit {
  background: var(--gold) !important;
  color: var(--purple-deep) !important;
  font-family: 'Jost', sans-serif !important;
  font-weight: 700 !important;
  font-size: 11px !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  border: none !important;
  border-radius: 6px !important;
  padding: 12px 24px !important;
  cursor: pointer !important;
}
.formkit-form .formkit-submit:hover { background: var(--gold-light) !important; }
.formkit-form [data-style="minimal"] { background: transparent !important; }
.formkit-powered-by-convertkit-container { display: none !important; }

/* ── GLOBAL MOBILE IMPROVEMENTS ─────────────────────────────── */
@media (max-width: 960px) {
  /* Nav hamburger always visible on mobile */
  .nav { padding: 0 20px; height: 60px; }
  .nav-links { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: absolute; top: 60px; left: 0; right: 0;
    background: var(--purple-deep); padding: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4); gap: 16px; z-index: 999;
  }
  .nav-hamburger { display: flex; }
  .nav-cta { display: none; }

  /* Touch-friendly buttons */
  .btn { padding: 14px 24px; font-size: 12px; }

  /* Images never overflow */
  img { max-width: 100%; height: auto; }

  /* Text scaling */
  body { font-size: 15px; }
}

@media (max-width: 480px) {
  .btn { width: 100%; justify-content: center; }
  .hero-btns { flex-direction: column; width: 100%; padding: 0 20px; }
}
