/* ============================================================
   EMANACE — Fractional CMO & Strategic Marketing Advisory
   Theme: Ark (light, thin type) — v2
   ============================================================ */

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

:root{
  /* re-mapped onto the existing token names so every page inherits
     the new theme without per-page edits — palette pulled from the
     Emanace "E" mark (deep blue -> violet gradient, near-black ink) */
  --navy-deep:   #0a0d24;   /* footer / darkest text on light bg      */
  --navy:        #1b1f3b;   /* headings / strong ink                  */
  --navy-soft:   #6b7194;   /* muted body copy                        */
  --gold:        #4f3ee0;   /* accent — indigo/blue from logo          */
  --gold-light:  #a855f7;   /* accent — violet from logo                */
  --slate:       #a9adc4;   /* faint gray                              */
  --slate-light: #e8e9f3;   /* hairlines on dark surfaces              */
  --cream:       #ffffff;   /* main bg                                 */
  --cream-dim:   #f5f5fb;   /* alternate light section bg              */
  --ink:         #1b1f3b;   /* primary text                            */
  --line:        rgba(27,31,59,0.09);
  --line-inv:    rgba(255,255,255,0.14);

  --gradient-feather: linear-gradient(100deg, var(--gold) 0%, var(--gold-light) 100%);

  --serif: 'Roboto', Arial, sans-serif;
  --sans: 'Roboto', Arial, sans-serif;

  --max: 1180px;
  --radius: 6px;
  --radius-pill: 6px;
  --shadow-card: none;
  --shadow-card-hover: 0 12px 24px rgba(43,47,56,0.08);
}

*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }

body{
  margin:0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

img{ max-width:100%; display:block; }

a{ color: inherit; text-decoration:none; }

h1,h2,h3,h4{
  font-family: var(--serif);
  font-weight: 300;
  color: var(--ink);
  line-height: 1.24;
  margin: 0 0 0.5em 0;
  letter-spacing: 0;
}

h1{ font-size: clamp(2.3rem, 4.4vw, 3.7rem); font-weight: 300; }
h2{ font-size: clamp(1.7rem, 2.8vw, 2.3rem); font-weight: 300; }
h3{ font-size: clamp(1.1rem, 1.6vw, 1.25rem); font-weight: 400; }

p{ margin: 0 0 1em 0; font-weight: 300; }

/* Bootstrap supplies the grid + responsive container widths; we just cap
   the max-width and gutter to match the original design. */
.container{
  max-width: var(--max);
  padding-left: 32px;
  padding-right: 32px;
}
@media (max-width: 575.98px){
  .container{ padding-left: 20px; padding-right: 20px; }
}

/* ---------- eyebrow / dash-flanked label ----------------------------- */
.eyebrow{
  display:flex;
  align-items:center;
  gap:12px;
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 16px;
}
.eyebrow::before,
.eyebrow::after{
  content:"";
  flex: 0 0 20px;
  height: 1px;
  background: var(--gold);
  opacity: 0.7;
}
.eyebrow.center{ justify-content:center; }
.eyebrow.left::after{ display:none; }
.eyebrow.left{ justify-content:flex-start; }

/* ---------- signature gradient rule ----------------------------------- */
.rule{
  height: 2px;
  width: 46px;
  background: var(--gradient-feather);
  border: 0;
  margin: 22px 0 0 0;
}
.rule.center{ margin-left:auto; margin-right:auto; }

/* ---------- thin circle brand mark (replaces missing logo image) ------ */
.brand-mark{
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display:flex;
  align-items:center;
  justify-content:center;
  font-family: var(--serif);
  font-weight: 400;
  font-size: 0.95rem;
  color: var(--ink);
  flex-shrink:0;
}
footer .brand-mark{ border-color: var(--line-inv); color:#fff; }

/* ---------- header (Bootstrap navbar) ------------------------------------ */
.site-header{
  position: sticky;
  top:0;
  z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  padding-top: 18px;
  padding-bottom: 18px;
}
.brand{
  display:flex;
  align-items:center;
  gap:12px;
}
.brand img{ height: 60px; width:auto; }
.brand-word{
  font-family: var(--sans);
  font-size: 0.92rem;
  letter-spacing: 0.24em;
  font-weight: 400;
  color: var(--ink);
}
.main-nav{
  display:flex;
  align-items:center;
  gap: 36px;
}
.main-nav .nav-link{
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 400;
  color: var(--ink);
  position:relative;
  padding: 4px 0;
  transition: color .2s ease;
}
.main-nav .nav-link:hover{ color: var(--gold); }
.main-nav .nav-link.active{ color: var(--ink); font-weight:500; }
.main-nav .nav-link.active::after{
  content:"";
  position:absolute;
  left:0; right:0; bottom:-6px;
  height:1px;
  background: var(--gold);
}
.navbar-toggler{
  border-color: var(--line);
  padding: 6px 10px;
}
.navbar-toggler:focus{ box-shadow: 0 0 0 3px rgba(79,62,224,0.2); }
.navbar-toggler-icon{
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2827, 31, 59, 0.85%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
.btn{
  display:inline-flex;
  align-items:center;
  gap:10px;
  font-family: var(--sans);
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 400;
  padding: 12px 26px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  color: var(--ink);
  transition: all .2s ease;
  white-space: nowrap;
}
.btn:hover{ border-color: var(--gold); color: var(--gold); }
.btn.primary{
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
}
.btn.primary:hover{ background: var(--gold-light); border-color: var(--gold-light); color:#fff; }
.btn.on-dark{ border-color: rgba(255,255,255,0.55); color: #fff; }
.btn.on-dark:hover{ background: #fff; color: var(--gold); border-color:#fff; }

/* ---------- hero --------------------------------------------------------- */
.hero{
  position: relative;
  padding: 108px 0 92px;
  overflow: hidden;
  background: var(--cream);
}
.hero::before{
  content:"";
  position:absolute;
  right:-8%; top:-20%;
  width: 620px; height: 620px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(79,62,224,0.12), transparent 70%);
  pointer-events:none;
}
.hero .container{ position:relative; }
.hero h1{ margin-bottom: 22px; }
.hero .lede{
  font-size: 1.06rem;
  color: var(--ink);
  max-width: 46ch;
  margin-bottom: 34px;
}
.hero-actions{ display:flex; gap:16px; flex-wrap:wrap; margin-top: 8px;}
.hero-mark{
  position:relative;
  display:flex;
  align-items:center;
  justify-content:center;
}
.hero-mark img{
  width: 100%;
  max-width: 600px;
  opacity: 0.92;
}

/* ---------- sections ------------------------------------------------------*/
section{ padding: 88px 0; }
section.tight{ padding: 60px 0; }
.section-dark{
  background: var(--cream-dim);
  color: var(--ink);
}
.section-dark h2, .section-dark h3{ color: var(--ink); }
.section-dim{ background: var(--cream-dim); }

.section-head{
  max-width: 640px;
  margin-bottom: 52px;
}
.section-head.center{ margin-left:auto; margin-right:auto; text-align:center; }

/* ---------- grids / cards --------------------------------------------------*/
.card{
  background: var(--cream);
  border: 1px solid var(--line);
  padding: 40px 34px;
  border-radius: var(--radius);
  box-shadow: none;
  transition: background .2s ease;
}
.card:hover{
  background: var(--cream-dim);
  transform:none;
  box-shadow:none;
}
.section-dark .card, .section-dim .card{
  background: var(--cream-dim);
}
.section-dark .card:hover, .section-dim .card:hover{ background: #eef0f3; }

/* thin outline icon / label mark — Ark-style feature icon */
.card .num{
  width: 42px;
  height: 42px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--ink);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 50%;
  margin-bottom: 22px;
}
.card .num svg{ width:20px; height:20px; stroke: var(--ink); fill:none; }
.card h3{ margin-bottom: 12px; font-weight:400; }
.card p{
  color: var(--ink);
  font-size: 0.95rem;
  margin-bottom: 0;
}

/* ---------- process flow ---------------------------------------------------*/
.flow-step{
  text-align:center;
  padding: 6px 10px;
  position:relative;
}
.flow-step .stage{
  width: 92px;
  height: 92px;
  margin: 0 auto 14px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius: 50%;
  background: transparent;
  border: 1px solid var(--gold);
  font-family: var(--serif);
  font-size: 0.78rem;
  font-weight: 400;
  padding: 6px;
  text-align: center;
  line-height: 1.25;
  word-break: break-word;
  overflow-wrap: break-word;
  color: var(--gold);
}
.flow-step .detail{
  font-size: 0.8rem;
  color: var(--ink);
  letter-spacing: 0.01em;
}
/* ---------- quote / CTA -------------------------------------------------------*/
.cta-band{
  background: var(--gold);
  color: #fff;
  padding: 84px 0;
  text-align:center;
  position: relative;
  overflow: hidden;
}
.cta-band .container{ position:relative; }
.cta-band h2{ color: #fff; font-weight:300; max-width: 22ch; margin-left:auto; margin-right:auto; }
.cta-band p{ color: rgba(255,255,255,0.85); max-width: 50ch; margin: 0 auto 30px; }
.cta-band .eyebrow{ color: rgba(255,255,255,0.85); }
.cta-band .eyebrow::before, .cta-band .eyebrow::after{ background: rgba(255,255,255,0.6); }

blockquote.pull{
  font-family: var(--serif);
  font-style: normal;
  font-weight: 300;
  font-size: 1.45rem;
  color: var(--ink);
  max-width: 720px;
  margin: 0 auto;
  text-align:center;
  line-height: 1.55;
}
blockquote.pull footer{
  margin-top: 20px;
  font-family: var(--sans);
  font-style: normal;
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 400;
  color: var(--gold);
}

/* ---------- table (what we do / don't) --------------------------------------*/
.compare-col{
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 38px;
}
.compare-col h3{ margin-bottom: 18px; font-weight:400; }
.compare-col ul{ margin:0; padding:0; list-style:none; }
.compare-col li{
  padding: 11px 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.94rem;
  color: var(--ink);
  display:flex;
  gap: 12px;
}
.compare-col li:last-child{ border-bottom:0; }
.compare-col.yes li::before{ content:"—"; color: var(--gold); flex-shrink:0; }
.compare-col.no li::before{ content:"—"; color: var(--slate); flex-shrink:0; }
.compare-col.no{ background: var(--cream-dim); }

/* ---------- services detail list ----------------------------------------------*/
.service-block{
  padding: 52px 0;
  border-bottom: 1px solid var(--line);
  align-items: flex-start;
}
.service-block:last-child{ border-bottom:0; }
.service-block h2{ font-weight:300; }
.service-block .tag{
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--gold);
  margin-bottom: 14px;
  display:block;
}
.service-block .deliverable{
  margin-top: 22px;
  padding: 22px 24px;
  background: var(--cream-dim);
  border-left: 2px solid var(--gold);
}
.service-block .deliverable strong{
  display:block;
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1rem;
  color: var(--ink);
  margin-bottom: 6px;
}
.chip-row{ display:flex; flex-wrap:wrap; gap:8px; margin-top: 18px; }
.chip{
  font-size: 0.76rem;
  font-weight: 400;
  padding: 6px 14px;
  border: 1px solid var(--line);
  background: transparent;
  border-radius: var(--radius);
  color: var(--ink);
}

/* ---------- pricing / engagement cards -----------------------------------------*/
.plan{
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 40px 34px;
  display:flex;
  flex-direction:column;
  gap: 18px;
  transition: border-color .2s ease;
}
.plan h3{ font-weight:400; }
.plan.featured{
  background: var(--gold);
  border-color: var(--gold);
}
.plan.featured h3, .plan.featured .plan-question{ color: #fff; }
.plan.featured p{ color: rgba(255,255,255,0.9) !important; }
.plan.featured .rule{ background: rgba(255,255,255,0.6); }
.plan.featured .btn{ border-color: rgba(255,255,255,0.6); color:#fff; }
.plan.featured .btn:hover{ background:#fff; color: var(--gold); }
.plan-question{
  font-family: var(--serif);
  font-style: normal;
  font-weight: 300;
  color: var(--ink);
  font-size: 1rem;
}
.plan ul{ margin: 10px 0 0; padding: 0; list-style:none; flex-grow:1; }
.plan li{
  padding: 8px 0;
  font-size: 0.9rem;
  color: var(--ink);
  border-top: 1px solid var(--line);
}
.plan.featured li{ color: rgba(255,255,255,0.9); border-top-color: rgba(255,255,255,0.25); }
.plan li:first-child{ border-top:0; }
.plan p{ color: var(--ink); }

/* ---------- about page specific -------------------------------------------------*/
.founder{ align-items:center; }
.founder-photo{
  aspect-ratio: 4/5;
  overflow:hidden;
  border-radius: var(--radius);
}
.founder-photo img{ width:100%; height:100%; object-fit:cover; filter: grayscale(15%); }

.stat-row{ text-align:center; }
.stat-row .stat-num{
  font-family: var(--serif);
  font-weight: 300;
  font-size: 2.4rem;
  color: var(--gold);
  margin-bottom: 6px;
}
.stat-row .stat-label{
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 400;
  color: var(--ink);
}

/* ---------- contact ---------------------------------------------------------------*/
.contact-grid{ align-items:flex-start; }
.field{ margin-bottom: 20px; }
.field label{
  display:block;
  font-size: 0.74rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 8px;
}
.field input, .field select, .field textarea{
  width:100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  background: var(--cream);
  font-family: var(--sans);
  font-weight: 300;
  font-size: 0.94rem;
  color: var(--ink);
  border-radius: var(--radius);
}
.field input:focus, .field select:focus, .field textarea:focus{
  outline: none;
  border-color: var(--gold);
}
.field textarea{ resize: vertical; min-height: 118px; }

.contact-info-item{
  display:flex;
  gap: 18px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}
.contact-info-item:first-child{ padding-top:0; }
.contact-info-item .label{
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--gold);
  min-width: 100px;
}
.contact-info-item .value{ color: var(--ink); font-size: 0.94rem; }

/* ---------- footer ----------------------------------------------------------------*/
footer.site-footer{
  background: var(--navy-deep);
  color: rgba(255,255,255,0.6);
  padding: 60px 0 30px;
  font-weight: 300;
}
footer.site-footer .foot-top{
  padding-bottom: 40px;
  border-bottom: 1px solid var(--line-inv);
}
footer.site-footer .brand{
  margin-bottom: 14px;
  display:inline-flex;
  background: rgba(255,255,255,0.92);
  padding: 14px 20px;
  border-radius: var(--radius);
}
footer.site-footer .brand-word{ color: #fff; }
footer.site-footer p{ font-size: 0.86rem; max-width: 34ch; color: rgba(255,255,255,0.55); }
footer.site-footer h4{
  color: #fff;
  font-family: var(--sans);
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 16px;
}
footer.site-footer ul{ list-style:none; margin:0; padding:0; }
footer.site-footer li{ margin-bottom: 10px; font-size: 0.88rem; }
footer.site-footer a:hover{ color: var(--gold); }
.foot-bottom{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding-top: 26px;
  font-size: 0.76rem;
  letter-spacing: 0.02em;
  color: rgba(255,255,255,0.35);
  flex-wrap:wrap;
  gap: 12px;
}

/* ---------- page hero (inner pages) ------------------------------------------------*/
.page-hero{
  padding: 74px 0 60px;
  background: var(--cream);
  border-bottom: 1px solid var(--line);
}
.page-hero .lede{
  font-size: 1.02rem;
  color: var(--ink);
  max-width: 60ch;
}

/* ---------- responsive (layout now driven by Bootstrap's grid + navbar) --------------- */
@media (max-width: 991.98px){
  /* Bootstrap's navbar-collapse becomes a dropdown panel below lg; style it to match the theme */
  .navbar-collapse{
    background: #fff;
    border-bottom: 1px solid var(--line);
    padding: 8px 4px 20px;
    margin-top: 12px;
  }
  .main-nav{
    flex-direction: column;
    align-items:flex-start;
    gap: 4px;
  }
  .main-nav .nav-link{ padding: 10px 0; width:100%; }
}
@media (max-width: 575.98px){
  .hero-mark{ max-width: 220px; margin: 0 auto 24px; }
}
