/* Hold or Sell — shared styles. Palette sampled from the printed cover. */

:root{
  --navy-top:#204673;
  --navy-mid:#162D4C;
  --navy-deep:#0F1829;
  --gold:#F4CF27;
  --paper:#F2F4F7;
  --paper-dim:#AEBBCB;
  --rule:rgba(242,244,247,.18);
}

*{box-sizing:border-box;margin:0;padding:0}

html{scroll-behavior:smooth}

body{
  font-family:'Montserrat',-apple-system,BlinkMacSystemFont,'Segoe UI',Arial,sans-serif;
  background:var(--navy-deep);
  background-image:linear-gradient(180deg,var(--navy-top) 0%,var(--navy-mid) 45%,var(--navy-deep) 100%);
  background-attachment:fixed;
  color:var(--paper);
  font-size:17px;
  line-height:1.65;
  -webkit-font-smoothing:antialiased;
}

.wrap{max-width:640px;margin:0 auto;padding:56px 24px 72px}

.eyebrow{
  font-size:12px;letter-spacing:.16em;text-transform:uppercase;
  color:var(--paper-dim);margin-bottom:20px;
}

h1{
  font-weight:700;font-size:36px;line-height:1.15;
  color:var(--gold);margin-bottom:18px;letter-spacing:-.01em;
}

.lede{font-size:18px;color:var(--paper)}

/* dashed gold rule — reads as a lane marking, echoing the cover */
.lane{
  height:3px;margin:46px 0;border:0;
  background:repeating-linear-gradient(90deg,var(--gold) 0 26px,transparent 26px 52px);
  opacity:.5;
}

.num{
  font-size:12px;font-weight:700;letter-spacing:.18em;
  color:var(--gold);text-transform:uppercase;margin-bottom:10px;
}

h2{font-weight:700;font-size:24px;line-height:1.25;color:var(--paper);margin-bottom:14px}
h2 em,.show-title{font-style:italic}

section p{margin-bottom:20px}
section p:last-of-type{margin-bottom:24px}

a{color:var(--gold)}

.btn{
  display:inline-block;text-decoration:none;font-weight:700;font-size:16px;
  padding:15px 30px;border-radius:4px;border:2px solid transparent;
}
.btn-solid{background:var(--gold);color:var(--navy-deep)}
.btn-solid:hover{background:#FFDD3D}
.btn-ghost{background:transparent;color:var(--gold);border-color:var(--gold)}
.btn-ghost:hover{background:rgba(244,207,39,.12)}

.fine{font-size:13px;color:var(--paper-dim);margin-top:12px;line-height:1.55}

/* episode list */
ul.eps{list-style:none;margin:0 0 18px;border-top:1px solid var(--rule)}
ul.eps li{padding:13px 0;border-bottom:1px solid var(--rule)}
ul.eps a{
  color:var(--paper);display:block;
  text-decoration:underline;
  text-decoration-color:var(--gold);
  text-decoration-thickness:2px;
  text-underline-offset:4px;
}
ul.eps a:hover,ul.eps a:focus-visible{color:var(--gold)}
.more{color:var(--gold);text-decoration:none;font-weight:700;font-size:15px}

/* portraits */
.portrait{
  width:104px;height:104px;border-radius:50%;object-fit:cover;
  float:left;margin:4px 20px 12px 0;border:2px solid var(--gold);
}
.clear{clear:both}

/* root hero */
.hero{text-align:center;margin-bottom:8px}
.hero img{width:100%;max-width:320px;height:auto;display:block;margin:0 auto 28px}

.bullets{list-style:none;margin:0 0 24px}
.bullets li{
  padding:9px 0 9px 26px;position:relative;border-bottom:1px solid var(--rule);
}
.bullets li:before{
  content:"";position:absolute;left:2px;top:20px;
  width:10px;height:2px;background:var(--gold);
}

blockquote{
  border-left:3px solid var(--gold);padding:4px 0 4px 20px;margin:0 0 24px;
  font-size:19px;line-height:1.5;
}

footer{
  margin-top:56px;padding-top:26px;border-top:1px solid var(--rule);
  font-size:13px;color:var(--paper-dim);line-height:1.7;
}
footer a{color:var(--paper-dim)}

/* editorial markers — delete these two rules and their spans before launch */
.fillin{
  display:inline-block;background:#C0261F;color:#fff;font-size:11px;font-weight:700;
  letter-spacing:.08em;padding:3px 8px;border-radius:3px;text-transform:uppercase;
}
.note{color:#9AA7B8;font-size:13px;font-style:italic}

a:focus-visible,.btn:focus-visible{outline:3px solid var(--gold);outline-offset:3px}

@media(max-width:560px){
  body{font-size:16px}
  .wrap{padding:40px 20px 56px}
  h1{font-size:28px}
  h2{font-size:21px}
  .btn{display:block;text-align:center}
  .portrait{float:none;margin:0 0 16px}
}

/* MailerLite embed sits here — keep the host neutral so their styles win */
.formslot{margin:0 0 8px}
.formslot input[type=email],.formslot input[type=text]{
  font-family:inherit;font-size:16px;
}

/* office addresses in footer */
.offices{display:flex;gap:32px;flex-wrap:wrap;margin-top:18px}
.offices div{min-width:220px}
.offices strong{color:var(--paper);font-weight:700;display:block;font-size:13px}

/* small note badge, e.g. retail availability */
.badge{
  display:inline-block;border:1px solid var(--rule);border-radius:4px;
  padding:12px 16px;font-size:14px;color:var(--paper-dim);
}
.badge strong{color:var(--paper)}

/* full-width primary action, used on the thank-you page */
.btn-wide{display:block;text-align:center}


/* ---- Signup form panel -------------------------------------------------
   The MailerLite embed renders inside .formslot. The panel below gives it
   a visible edge so the form reads as the one thing to do on the page.
   Turn OFF the form's own heading and description inside MailerLite —
   the page copy above it already says both, and the duplicate is the
   main reason the block currently reads as cluttered rather than bold. */
.formslot{
  margin:0 0 8px;
  border:1px solid rgba(244,207,39,.45);
  border-left:4px solid var(--gold);
  border-radius:6px;
  padding:8px 20px;
  background:rgba(15,24,41,.55);
}
.formslot input[type=email],.formslot input[type=text]{
  font-family:'Montserrat',Arial,sans-serif !important;
  font-size:16px !important;
}
/* match MailerLite's submit button to the site buttons */
.formslot button,
.formslot .ml-form-embedSubmit button,
.formslot input[type=submit]{
  font-family:'Montserrat',Arial,sans-serif !important;
  font-weight:700 !important;
  font-size:16px !important;
  border-radius:4px !important;
  padding:15px 30px !important;
  background:var(--gold) !important;
  color:var(--navy-deep) !important;
  border:2px solid var(--gold) !important;
}
@media(max-width:560px){
  .formslot{padding:6px 14px}
}

/* footer nav — matches the rent control directory */
.f-nav{display:flex;flex-wrap:wrap;gap:10px 26px;padding-bottom:20px;margin-bottom:20px;border-bottom:1px solid var(--rule)}
.f-nav a{color:var(--paper);text-decoration:none;font-size:12px;font-weight:700;letter-spacing:.1em;text-transform:uppercase}
.f-nav a:hover{color:var(--gold)}

/* sub-labels within a section, e.g. the two halves of the feedback ask */
.sublabel{
  font-size:12px;font-weight:700;letter-spacing:.14em;text-transform:uppercase;
  color:var(--gold);margin:26px 0 10px;
}
.sublabel:first-of-type{margin-top:0}
