/* ============================================================
   BOLDGROUP — Conversion Landing Page styles
   (uses tokens from ../../colors_and_type.css)
   ============================================================ */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--pure-white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(64px, 9vw, 128px); }
.eyebrow-rule { display: inline-flex; flex-direction: column; gap: 12px; }
.eyebrow-rule::after { content: ""; width: 46px; height: 2px; background: var(--gold); }
.on-dark .eyebrow-rule::after { background: var(--gold-bright); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-weight: 600; font-size: 1rem; letter-spacing: .005em;
  padding: 16px 28px; border-radius: var(--r-pill); border: 1.5px solid transparent;
  transition: transform .25s var(--ease), background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
  white-space: nowrap;
}
.btn:active { transform: translateY(1px) scale(.99); }
.btn-gold { background: var(--gold); color: #fff; }
.btn-gold:hover { background: #a5773d; }
.btn-green { background: var(--bold-green); color: var(--cream); }
.btn-green:hover { background: var(--green-800); }
.btn-ghost-light { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost-light:hover { border-color: var(--bold-green); }
.btn-ghost-dark { background: transparent; color: var(--on-dark); border-color: var(--line-dark); }
.btn-ghost-dark:hover { border-color: var(--gold-bright); color: #fff; }
.btn .bg-icon svg { width: 18px; height: 18px; }

/* ---------- Nav ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px var(--gutter);
  transition: background .35s var(--ease), padding .35s var(--ease), box-shadow .35s var(--ease);
}
.nav--solid { background: rgba(46,54,41,.92); backdrop-filter: blur(10px); box-shadow: 0 1px 0 var(--line-dark); padding-block: 14px; }
.nav__logo { height: 30px; width: auto; }
.nav__links { display: flex; align-items: center; gap: 30px; }
.nav__links a { color: var(--on-dark-soft); font-size: .95rem; font-weight: 500; transition: color .2s; }
.nav__links a:hover { color: #fff; }
@media (max-width: 860px) { .nav__links a:not(.nav__cta) { display: none; } }

/* ---------- Hero ---------- */
.hero { position: relative; min-height: 100svh; display: flex; align-items: flex-end; overflow: hidden; background: var(--green-950); }
.hero__media { position: absolute; inset: 0; }
.hero__photo { width: 100%; height: 100%; object-fit: cover; object-position: 50% 42%; }
.hero__scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(20,25,18,.55) 0%, rgba(20,25,18,.15) 30%, rgba(20,25,18,.35) 60%, rgba(20,25,18,.92) 100%),
    linear-gradient(90deg, rgba(20,25,18,.7) 0%, rgba(20,25,18,.25) 55%, transparent 100%);
}
.hero__inner { position: relative; z-index: 2; width: 100%; padding-bottom: clamp(48px, 7vw, 92px); padding-top: 140px; }
.hero h1 { color: var(--on-dark); margin: 0 0 22px; max-width: 16ch; }
.hero__sub { color: var(--on-dark-soft); max-width: 44ch; margin: 0 0 30px; }
.hero__tag { position: absolute; right: var(--gutter); bottom: clamp(48px, 7vw, 92px); z-index: 2; text-align: right; }
.hero__tag .h3 { color: var(--cream); font-style: italic; }
.hero__tag .h3 em { color: var(--gold-bright); font-style: italic; }
@media (max-width: 760px){ .hero__tag { display: none; } }

/* ---------- Lead capture form ---------- */
.capture {
  display: flex; gap: 10px; background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.22); backdrop-filter: blur(8px);
  padding: 8px; border-radius: var(--r-pill); max-width: 540px;
}
.capture input {
  flex: 1; min-width: 0; border: none; background: transparent; color: #fff;
  font-size: 1.02rem; font-family: inherit; padding: 12px 18px;
}
.capture input::placeholder { color: rgba(255,255,255,.6); }
.capture input:focus { outline: none; }
.capture__micro { margin-top: 16px; display: flex; gap: 18px; flex-wrap: wrap; color: var(--on-dark-muted); font-size: .85rem; }
.capture__micro span { display: inline-flex; align-items: center; gap: 7px; }
.capture__micro .bg-icon svg { width: 15px; height: 15px; color: var(--gold-bright); }
.capture--done { color: var(--on-dark); padding: 18px 24px; }
@media (max-width: 560px){
  .capture { flex-direction: column; border-radius: var(--r-lg); background: rgba(255,255,255,.12); }
  .capture .btn { justify-content: center; }
}

/* ---------- Resources (attachments) ---------- */
.resources { background: var(--green-50); padding-block: clamp(48px, 6vw, 88px); }
.resources__head { max-width: 60ch; margin-bottom: 44px; }
.resources__head h2 { color: var(--ink); margin: 18px 0 0; }
.resources__head .lead { margin-top: 12px; }
.res-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.rcard {
  display: flex; flex-direction: column; background: var(--pure-white);
  border: 1px solid var(--line); border-radius: var(--r-md); overflow: hidden;
  box-shadow: var(--shadow-sm); transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.rcard:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.rcard__media { position: relative; }
.rcard__media image-slot { width: 100%; height: clamp(150px, 15vw, 180px); display: block; }
.rcard__media .rcard-img { width: 100%; height: clamp(150px, 15vw, 180px); object-fit: cover; object-position: 50% 30%; display: block; }
.rcard__media image-slot::part(frame) { background: var(--green-100); border-radius: 0; }
.rcard__badge {
  position: absolute; left: 12px; top: 12px; z-index: 3;
  background: var(--bold-green); color: var(--cream);
  font-size: .68rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  padding: 5px 11px; border-radius: var(--r-pill);
}
.rcard__play {
  position: absolute; inset: 0; z-index: 2; display: flex; align-items: center; justify-content: center;
  pointer-events: none;
}
.rcard__play span {
  width: 56px; height: 56px; border-radius: 50%;
  background: rgba(46,54,41,.78); color: #fff; display: flex; align-items: center; justify-content: center;
  backdrop-filter: blur(4px); box-shadow: var(--shadow-md);
}
.rcard__play svg { width: 22px; height: 22px; margin-left: 3px; }
.rcard__body { padding: 22px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.rcard__kicker { color: var(--gold); font-weight: 700; font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; }
.rcard h3 { margin: 9px 0 8px; color: var(--ink); font-size: 1.32rem; }
.rcard p { margin: 0 0 18px; color: var(--fg2); font-size: .94rem; line-height: 1.55; }
.rcard__link {
  margin-top: auto; display: inline-flex; align-items: center; gap: 8px;
  color: var(--bold-green); font-weight: 700; font-size: .92rem; letter-spacing: .01em;
  transition: gap .25s var(--ease), color .2s;
}
.rcard__link svg { width: 17px; height: 17px; transition: transform .25s var(--ease); }
.rcard:hover .rcard__link { color: var(--gold); }
.rcard:hover .rcard__link svg { transform: translateX(4px); }
@media (max-width: 980px){ .res-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px){ .res-grid { grid-template-columns: 1fr; } }

/* ---------- Stats / Results ---------- */
.stats { background: var(--pure-white); }
.stats__head { max-width: 60ch; margin-bottom: 56px; }
.stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat { padding: 8px 28px; border-left: 1px solid var(--line); }
.stat:first-child { border-left: none; padding-left: 0; }
.stat__num { color: var(--ink); display: flex; align-items: baseline; }
.stat__label { font-weight: 700; letter-spacing: .12em; text-transform: uppercase; font-size: .8rem; margin-top: 14px; color: var(--ink); }
.stat__note { color: var(--fg3); font-size: .9rem; margin-top: 6px; max-width: 22ch; }
@media (max-width: 820px){ .stats__grid { grid-template-columns: repeat(2, 1fr); gap: 36px 0; } .stat:nth-child(odd){ border-left:none; padding-left:0; } .stat:nth-child(even){ padding-left:28px; } }
@media (max-width: 480px){ .stats__grid { grid-template-columns: 1fr; gap: 30px; } .stat { border-left: none !important; padding-left: 0 !important; } }

/* ---------- Value props ---------- */
.values { background: var(--green-50); padding-block: clamp(48px, 6vw, 88px); }
.values__head { max-width: 22ch; margin-bottom: 30px; }
.values__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; }
.vcard { padding: 0 36px; border-left: 1px solid var(--line); }
.vcard:first-child { border-left: none; padding-left: 0; }
.vcard__icon { width: 56px; height: 56px; border-radius: 50%; border: 1.25px solid var(--gold); color: var(--gold); display: flex; align-items: center; justify-content: center; margin-bottom: 22px; }
.vcard__icon svg { width: 26px; height: 26px; }
.vcard h3 { margin: 0 0 10px; color: var(--ink); }
.vcard p { color: var(--fg2); margin: 0; }
@media (max-width: 800px){ .values__grid { grid-template-columns: 1fr; gap: 40px; } .vcard { border-left: none; padding-left: 0; padding-right: 0; } }

/* ---------- Exposure (dark) ---------- */
.exposure { background: var(--green-950); color: var(--on-dark); position: relative; padding-block: clamp(48px, 6vw, 88px); }
.exposure__head { max-width: 26ch; margin-bottom: 32px; }
.exposure__head h2 { color: var(--on-dark); }
.exp-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px 32px; }
.exp { }
.exp__icon { color: var(--gold-bright); margin-bottom: 18px; }
.exp__icon svg { width: 34px; height: 34px; }
.exp__num { font-family: var(--font-display); font-weight: 400; font-size: clamp(2.2rem, 4vw, 3.1rem); color: var(--on-dark); line-height: 1; }
.exp__label { font-weight: 700; letter-spacing: .1em; text-transform: uppercase; font-size: .78rem; margin: 12px 0 8px; }
.exp__note { color: var(--on-dark-soft); font-size: .9rem; max-width: 24ch; }
.exposure__foot { margin-top: 40px; padding-top: 28px; border-top: 1px solid var(--line-dark); font-family: var(--font-display); font-size: clamp(1.3rem, 2.4vw, 2rem); color: var(--cream); }
.exposure__foot em { color: var(--gold-bright); font-style: italic; }
@media (max-width: 900px){ .exp-grid { grid-template-columns: repeat(2,1fr); gap: 44px 28px; } }
@media (max-width: 460px){ .exp-grid { grid-template-columns: 1fr; } }

/* ---------- Staging ---------- */
.staging__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.staging__copy h2 { color: var(--ink); margin: 0 0 18px; }
.staging__points { display: grid; gap: 22px; margin-top: 32px; }
.spoint { display: flex; gap: 16px; }
.spoint__icon { flex: none; width: 46px; height: 46px; border-radius: 50%; border: 1.25px solid var(--gold); color: var(--gold); display: flex; align-items: center; justify-content: center; }
.spoint__icon svg { width: 22px; height: 22px; }
.spoint h4 { margin: 0 0 4px; font-size: 1.02rem; color: var(--ink); font-weight: 700; }
.spoint p { margin: 0; color: var(--fg2); font-size: .95rem; }
.staging__photos { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.staging__photos image-slot { width: 100%; height: clamp(300px, 38vw, 420px); }
.staging__photos .ba-img { width: 100%; height: clamp(300px, 38vw, 420px); object-fit: cover; border-radius: var(--r-md); display: block; }
.ba-tag { position: relative; }
.ba-tag span { position: absolute; left: 12px; top: 12px; z-index: 3; background: var(--bold-green); color: var(--cream); font-size: .72rem; font-weight: 700; letter-spacing: .14em; padding: 5px 12px; border-radius: var(--r-pill); }
@media (max-width: 820px){ .staging__grid { grid-template-columns: 1fr; } }

/* ---------- Agents ---------- */
.agents { background: var(--bold-green); color: var(--on-dark); }
.agents__head { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; margin-bottom: 36px; flex-wrap: wrap; }
.agents__combined { display: grid; grid-template-columns: minmax(280px, 440px) 1fr; gap: clamp(28px, 5vw, 60px); align-items: center; background: rgba(255,255,255,.04); border: 1px solid var(--line-dark); border-radius: var(--r-md); padding: clamp(24px, 3vw, 40px); }
.agents__portraits { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.agents__portraits image-slot { width: 100%; height: clamp(230px, 24vw, 300px); border-radius: var(--r-sm); overflow: hidden; }
.agents__portraits .agent__portrait { width: 100%; height: clamp(230px, 24vw, 300px); object-fit: cover; object-position: center 20%; border-radius: var(--r-sm); display: block; }
.agent__fig { margin: 0; }
.agent__cap { display: flex; flex-direction: column; gap: 2px; margin-top: 12px; }
.agent__cap-name { font-family: var(--font-display); font-size: 1.12rem; color: var(--cream); line-height: 1.2; }
.agent__cap-role { font-size: .82rem; letter-spacing: .04em; text-transform: uppercase; color: var(--gold-bright); }
.agents__combined .agent__body { padding: 0; }
@media (max-width: 760px){ .agents__combined { grid-template-columns: 1fr; } }
.agents__head h2 { color: var(--on-dark); margin: 12px 0 0; }
.agents__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.agent { background: rgba(255,255,255,.04); border: 1px solid var(--line-dark); border-radius: var(--r-md); overflow: hidden; display: flex; flex-direction: column; }
.agent image-slot { width: 100%; height: clamp(280px, 30vw, 360px); }
.agent__body { padding: 26px 28px 30px; }
.agent__name { font-family: var(--font-display); font-size: 1.7rem; font-weight: 400; color: #fff; }
.agent__role { color: var(--gold-bright); font-size: .85rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; margin-top: 4px; }
.agent__list { list-style: none; margin: 20px 0 0; padding: 0; display: grid; gap: 12px; }
.agent__list li { display: flex; gap: 11px; color: var(--on-dark-soft); font-size: .92rem; line-height: 1.4; }
.agent__list .bg-icon { color: var(--gold-bright); flex: none; }
.agent__list .bg-icon svg { width: 17px; height: 17px; margin-top: 2px; }
@media (max-width: 760px){ .agents__grid { grid-template-columns: 1fr; } }

/* ---------- Process ---------- */
.process-sec { padding-block: clamp(48px, 6vw, 88px); }
.process__head { max-width: 28ch; margin-bottom: 32px; }
.process__steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; counter-reset: step; }
.pstep { padding: 0 28px; border-left: 1px solid var(--line); position: relative; }
.pstep:first-child { border-left: none; padding-left: 0; }
.pstep__n { font-family: var(--font-display); font-size: 2.4rem; color: var(--gold); line-height: 1; }
.pstep h4 { margin: 16px 0 8px; font-size: 1.1rem; color: var(--ink); font-weight: 700; }
.pstep p { margin: 0; color: var(--fg2); font-size: .94rem; }
@media (max-width: 820px){ .process__steps { grid-template-columns: 1fr 1fr; gap: 36px 0; } .pstep:nth-child(odd){border-left:none;padding-left:0;} .pstep:nth-child(even){padding-left:28px;} }
@media (max-width: 460px){ .process__steps { grid-template-columns: 1fr; gap: 30px; } .pstep { border-left:none !important; padding-left:0 !important; } }

/* ---------- FAQ ---------- */
.faq { background: var(--green-50); }
.faq__grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: clamp(32px, 5vw, 80px); align-items: start; }
.faq__list { display: grid; }
.faq__item { border-top: 1px solid var(--line); }
.faq__item:last-child { border-bottom: 1px solid var(--line); }
.faq__q { width: 100%; text-align: left; background: none; border: none; padding: 26px 0; display: flex; gap: 20px; align-items: center; justify-content: space-between; font-family: var(--font-display); font-size: 1.3rem; font-weight: 400; color: var(--ink); }
.faq__q .bg-icon { color: var(--gold); transition: transform .3s var(--ease); flex: none; }
.faq__item--open .faq__q .bg-icon { transform: rotate(180deg); }
.faq__a { overflow: hidden; max-height: 0; transition: max-height .4s var(--ease); }
.faq__a > div { padding-bottom: 26px; color: var(--fg2); font-size: 1rem; line-height: 1.6; max-width: 60ch; }
@media (max-width: 820px){ .faq__grid { grid-template-columns: 1fr; } }

/* ---------- Final CTA ---------- */
.finalcta { background: var(--bold-green); color: var(--on-dark); }
.finalcta__grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(36px, 6vw, 90px); align-items: center; }
.finalcta h2 { color: var(--on-dark); margin: 14px 0 18px; }
.finalcta__sub { color: var(--on-dark-soft); max-width: 46ch; margin-bottom: 30px; }
.finalcta__contacts { display: grid; gap: 16px; margin-top: 30px; }
.fcontact { display: flex; gap: 14px; align-items: center; color: var(--on-dark-soft); font-size: .98rem; }
a.fcontact { transition: color .2s; }
a.fcontact:hover { color: var(--gold-bright); }
.fcontact .bg-icon { color: var(--gold-bright); }
.fcontact .bg-icon svg { width: 20px; height: 20px; }
.fcard { background: var(--cream); color: var(--ink); border-radius: var(--r-lg); padding: clamp(28px, 4vw, 44px); box-shadow: var(--shadow-lg); }
.fcard h3 { font-family: var(--font-display); font-size: 1.6rem; font-weight: 400; margin: 0 0 6px; }
.fcard p.small { color: var(--fg3); margin: 0 0 22px; }
.field { display: grid; gap: 7px; margin-bottom: 16px; }
.field label { font-size: .8rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--ink-soft); }
.field input {
  border: 1.5px solid var(--line); border-radius: var(--r-sm); padding: 13px 16px; font-size: 1rem;
  font-family: inherit; background: #fff; color: var(--ink); transition: border-color .2s;
}
.field input:focus { outline: none; border-color: var(--gold); }
.finalcta__tag { margin-top: 56px; padding-top: 30px; border-top: 1px solid var(--line-dark); font-family: var(--font-display); font-size: clamp(1.6rem, 3vw, 2.4rem); color: var(--cream); }
.finalcta__tag em { color: var(--gold-bright); font-style: italic; }
@media (max-width: 820px){ .finalcta__grid { grid-template-columns: 1fr; } }

/* ---------- Footer ---------- */
.footer { background: var(--green-950); color: var(--on-dark-soft); padding: 56px var(--gutter) 40px; }
.footer__top { max-width: var(--maxw); margin: 0 auto; display: flex; justify-content: space-between; align-items: center; gap: 24px; flex-wrap: wrap; padding-bottom: 32px; border-bottom: 1px solid var(--line-dark); }
.footer__logo { height: 34px; }
.footer__legal { max-width: var(--maxw); margin: 28px auto 0; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: .82rem; color: var(--on-dark-muted); }
.footer__socials { display: flex; gap: 14px; }
.footer__socials a { width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--line-dark); display: flex; align-items: center; justify-content: center; color: var(--on-dark-soft); transition: border-color .2s, color .2s; }
.footer__socials a:hover { border-color: var(--gold-bright); color: #fff; }

/* reveal-on-scroll */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease-out), transform .7s var(--ease-out); }
.reveal.in { opacity: 1; transform: none; }
