/* ==========================================================================
   Ashlee Croft — The Home Slayer
   Palette carried over from the original site: black #000, gold #bd9028, white.
   Type carried over: Montserrat (headings) + Poppins (body).
   ========================================================================== */

:root {
  --gold:        #bd9028;
  --gold-lt:     #e6c66d;
  --gold-br:     #f2dfa0;
  --gold-dk:     #8c6a19;
  --ink:         #000000;
  --ink-2:       #0d0d0d;
  --ink-3:       #171717;
  --ink-4:       #242424;
  --line:        #2e2e2e;
  --paper:       #ffffff;
  --paper-2:     #f7f5f1;
  --paper-3:     #ece7dd;
  --body:        #3a3a3a;
  --body-dim:    #6b6b6b;
  --on-dark:     #f4f1ea;
  --on-dark-dim: #b3aca0;

  --font-head: 'Montserrat', 'Helvetica Neue', Arial, sans-serif;
  --font-body: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;

  --wrap: 1180px;
  --gut: 20px;
  --r: 4px;
  --r-lg: 10px;

  --shadow-sm: 0 2px 10px rgba(0,0,0,.08);
  --shadow:    0 10px 34px rgba(0,0,0,.12);
  --shadow-lg: 0 24px 60px rgba(0,0,0,.20);

  --gold-grad: linear-gradient(100deg, var(--gold-dk) 0%, var(--gold) 28%, var(--gold-br) 50%, var(--gold) 72%, var(--gold-dk) 100%);
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.72;
  color: var(--body);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: var(--gold-dk); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--gold); }

h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  color: var(--ink);
  line-height: 1.12;
  margin: 0 0 .5em;
  letter-spacing: -0.015em;
}
h1 { font-size: clamp(2.1rem, 6.2vw, 3.9rem); font-weight: 900; }
h2 { font-size: clamp(1.7rem, 4.2vw, 2.7rem); font-weight: 800; }
h3 { font-size: clamp(1.2rem, 2.4vw, 1.55rem); font-weight: 700; }
h4 { font-size: 1.05rem; font-weight: 700; letter-spacing: .01em; }
p  { margin: 0 0 1.15em; }
ul, ol { margin: 0 0 1.2em; padding-left: 1.25em; }
li { margin-bottom: .45em; }
strong { color: var(--ink); font-weight: 600; }
:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; border-radius: 2px; }

.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gut); }
.skip {
  position: absolute; left: -9999px; top: 0; z-index: 999;
  background: var(--gold); color: #000; padding: 12px 20px; font-weight: 700;
}
.skip:focus { left: 8px; top: 8px; }
.sr { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

/* ---------- shared bits ---------- */
.eyebrow {
  font-family: var(--font-head);
  font-size: .75rem; font-weight: 800; letter-spacing: .19em; text-transform: uppercase;
  color: var(--gold-dk); margin: 0 0 .9rem;
}
.on-dark .eyebrow, .sec-dark .eyebrow { color: var(--gold-lt); }

.rule {
  width: 72px; height: 3px; border: 0; margin: 0 0 1.4rem;
  background: var(--gold-grad); border-radius: 2px;
}
.rule.center { margin-inline: auto; }

.lede { font-size: 1.12rem; color: var(--body); }
.center { text-align: center; }
.measure { max-width: 68ch; }
/* Centers the BLOCK without centering the text inside it. Prose and FAQ
   bodies need this — `.center` would centre every line and wreck readability. */
.mx-auto { margin-inline: auto; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55em;
  font-family: var(--font-head); font-weight: 800; font-size: .86rem;
  letter-spacing: .1em; text-transform: uppercase; text-decoration: none;
  padding: 15px 30px; border-radius: var(--r); border: 2px solid transparent;
  cursor: pointer; transition: transform .16s ease, box-shadow .16s ease, background .16s, color .16s;
  text-align: center; line-height: 1.25;
}
.btn:hover { transform: translateY(-2px); }
.btn-gold {
  background: var(--gold-grad); color: #1a1205;
  box-shadow: 0 6px 20px rgba(189,144,40,.34);
}
.btn-gold:hover { color: #1a1205; box-shadow: 0 12px 30px rgba(189,144,40,.46); }
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { color: #fff; background: var(--ink-3); }
.btn-ghost { background: transparent; color: var(--gold-lt); border-color: var(--gold); }
.btn-ghost:hover { background: var(--gold); color: #1a1205; }
.btn-outline { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-outline:hover { background: var(--ink); color: #fff; }
.btn-lg { padding: 18px 38px; font-size: .95rem; }
.btn-block { display: flex; width: 100%; }

.cta-row { display: flex; flex-wrap: wrap; gap: 14px; }
.cta-row.center { justify-content: center; }

/* ---------- topbar ---------- */
.topbar { background: var(--ink); color: var(--on-dark-dim); font-size: .8rem; }
.topbar-in {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  min-height: 40px; flex-wrap: wrap;
}
.topbar-tag { font-family: var(--font-head); letter-spacing: .13em; text-transform: uppercase; font-size: .68rem; font-weight: 700; }
.topbar-call {
  display: inline-flex; align-items: center; gap: 7px;
  color: var(--gold-lt); font-weight: 700; text-decoration: none; letter-spacing: .04em;
}
.topbar-call svg { width: 15px; height: 15px; fill: currentColor; }
.topbar-call:hover { color: var(--gold-br); }
/* On phones the tagline wraps and shoves the phone number onto a second line.
   The number is the conversion — keep it, drop the tagline. */
@media (max-width: 720px) {
  .topbar-tag { display: none; }
  .topbar-in { justify-content: center; }
  .topbar-call { font-size: .92rem; padding: 4px 0; }
}

/* ---------- header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 90;
  background: #fff;
  border-bottom: 1px solid var(--paper-3);
}
/* NOTE: do not add backdrop-filter/filter/transform here. Any of them makes this
   element the containing block for position:fixed descendants, which breaks the
   off-canvas mobile nav (it would size itself to the header, not the viewport). */
.site-header.scrolled { box-shadow: var(--shadow-sm); }
.header-in { display: flex; align-items: center; justify-content: space-between; gap: 18px; min-height: 76px; }
.brand { flex-shrink: 0; line-height: 0; }
.brand img { width: 196px; height: auto; }

.primary-nav { display: flex; align-items: center; gap: 14px; }
.primary-nav ul { display: flex; list-style: none; margin: 0; padding: 0; gap: 0; flex-wrap: nowrap; }
.primary-nav li { margin: 0; }
.primary-nav a {
  display: block; padding: 8px 7px; border-radius: var(--r);
  font-family: var(--font-head); font-size: .72rem; font-weight: 700;
  letter-spacing: .04em; text-transform: uppercase; color: var(--ink);
  text-decoration: none; white-space: nowrap;
}
.primary-nav a:hover { color: var(--gold-dk); background: var(--paper-2); }
.primary-nav a[aria-current="page"] { color: var(--gold-dk); box-shadow: inset 0 -2px 0 var(--gold); }
.nav-cta { padding: 12px 16px; font-size: .7rem; letter-spacing: .06em; }
/* The logo already links home, so the desktop bar doesn't need the word too. */
.primary-nav .nav-home { display: none; }

.navtoggle {
  display: none; width: 46px; height: 42px; border: 0; background: transparent;
  cursor: pointer; padding: 10px 8px; flex-direction: column; justify-content: space-between;
}
.navtoggle span { display: block; height: 3px; background: var(--ink); border-radius: 2px; transition: transform .22s, opacity .18s; }
.navtoggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.navtoggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.navtoggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

@media (max-width: 1320px) {
  .navtoggle { display: flex; }
  .primary-nav .nav-home { display: block; }
  .primary-nav {
    position: fixed; inset: 0 0 0 auto; width: min(340px, 86vw);
    background: var(--ink); flex-direction: column; align-items: stretch;
    padding: 90px 24px 40px; gap: 6px; overflow-y: auto;
    transform: translateX(100%); transition: transform .28s ease; z-index: 95;
  }
  .primary-nav.open { transform: translateX(0); }
  .primary-nav ul { flex-direction: column; gap: 0; }
  .primary-nav a { color: var(--on-dark); font-size: .95rem; padding: 14px 6px; border-bottom: 1px solid var(--line); }
  .primary-nav a:hover { background: transparent; color: var(--gold-lt); }
  .primary-nav a[aria-current="page"] { color: var(--gold-lt); box-shadow: none; }
  .nav-cta { margin-top: 20px; }
  body.nav-open { overflow: hidden; }
  .nav-scrim { position: fixed; inset: 0; background: rgba(0,0,0,.55); z-index: 94; }
}
@media (max-width: 420px) { .brand img { width: 172px; } }

/* ---------- sections ---------- */
.sec { padding: clamp(56px, 8vw, 104px) 0; }
.sec-tight { padding: clamp(40px, 5vw, 64px) 0; }
.sec-paper { background: var(--paper-2); }
.sec-dark { background: var(--ink); color: var(--on-dark); }
.sec-dark h1, .sec-dark h2, .sec-dark h3, .sec-dark h4 { color: #fff; }
.sec-dark p { color: var(--on-dark-dim); }
.sec-dark strong { color: #fff; }
.sec-dark a { color: var(--gold-lt); }

.sec-head { max-width: 62ch; margin-bottom: 2.6rem; }
.sec-head.center { margin-inline: auto; text-align: center; }

/* ---------- hero ---------- */
.hero { position: relative; background: var(--ink); color: var(--on-dark); overflow: hidden; }
.hero::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 4px;
  background: var(--gold-grad);
}
.hero-in {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1.08fr .92fr; gap: clamp(28px, 5vw, 64px);
  align-items: center; padding: clamp(56px, 8vw, 104px) 0;
}
.hero h1 { color: #fff; }
.hero h1 .gold { color: var(--gold-lt); }
.hero p { color: var(--on-dark-dim); font-size: 1.1rem; }
.hero .cta-row { margin-top: 2rem; }

.hero-media { position: relative; }
.hero-media img {
  width: 100%; border-radius: var(--r-lg); box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 5; object-fit: cover; object-position: center 22%;
}
.hero-media::before {
  content: ""; position: absolute; inset: -14px -14px 24px 24px;
  border: 2px solid var(--gold); border-radius: var(--r-lg); z-index: -1;
}

.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background-image: url("/assets/img/gold-swoosh.webp");
  background-repeat: no-repeat; background-position: center 78%; background-size: 150% auto;
  opacity: .16;
}

.trustbar {
  display: flex; flex-wrap: wrap; gap: 10px 26px; margin: 1.6rem 0 0;
  padding: 0; list-style: none;
}
.trustbar li {
  display: flex; align-items: center; gap: 8px; margin: 0;
  font-family: var(--font-head); font-size: .74rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase; color: var(--gold-lt);
}
.trustbar li::before {
  content: ""; width: 7px; height: 7px; border-radius: 50%;
  background: var(--gold); flex-shrink: 0;
}

@media (max-width: 900px) {
  .hero-in { grid-template-columns: 1fr; padding-top: 44px; }
  .hero-media { order: -1; max-width: 380px; margin-inline: auto; }
  /* Square, not 4:3. The source portrait is ~0.71 ratio: at 4:3 only the middle
     53% of it survives the crop, which cuts Ashlee off at the collar. A square
     window keeps ~71% and lands the crop from just above her hair to below the
     shoulder line. */
  .hero-media img { aspect-ratio: 1 / 1; object-position: center 30%; }
  .hero-media::before { display: none; }
}

/* page hero (interior pages) */
.phero { position: relative; background: var(--ink); color: var(--on-dark); padding: clamp(52px, 7vw, 88px) 0 clamp(48px, 6vw, 76px); }
.phero::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 4px; background: var(--gold-grad); }
.phero h1 { color: #fff; max-width: 20ch; }
.phero p { color: var(--on-dark-dim); max-width: 60ch; font-size: 1.1rem; }
.phero .cta-row { margin-top: 1.9rem; }
.phero-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(28px, 5vw, 60px); align-items: center; }
.phero-grid img { border-radius: var(--r-lg); box-shadow: var(--shadow-lg); aspect-ratio: 4/3; object-fit: cover; }
@media (max-width: 860px) { .phero-grid { grid-template-columns: 1fr; } .phero-grid .phero-media { display: none; } }

/* ---------- breadcrumbs ---------- */
.crumbs { background: var(--paper-2); border-bottom: 1px solid var(--paper-3); font-size: .8rem; }
.crumbs ol { display: flex; flex-wrap: wrap; gap: 8px; list-style: none; margin: 0; padding: 12px 0; }
.crumbs li { margin: 0; color: var(--body-dim); }
.crumbs li + li::before { content: "›"; margin-right: 8px; color: var(--gold); }
.crumbs a { color: var(--body-dim); text-decoration: none; }
.crumbs a:hover { color: var(--gold-dk); text-decoration: underline; }

/* ---------- cards / grids ---------- */
.grid { display: grid; gap: 26px; }
.g2 { grid-template-columns: repeat(2, 1fr); }
.g3 { grid-template-columns: repeat(3, 1fr); }
.g4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 980px) { .g3, .g4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 660px) { .g2, .g3, .g4 { grid-template-columns: 1fr; } }

.card {
  background: #fff; border: 1px solid var(--paper-3); border-radius: var(--r-lg);
  padding: 30px 26px; box-shadow: var(--shadow-sm);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--gold); }
.card h3 { margin-bottom: .55rem; }
.card p:last-child { margin-bottom: 0; }
.card-dark { background: var(--ink-2); border-color: var(--line); color: var(--on-dark-dim); }
.card-dark h3, .card-dark h4 { color: #fff; }
.card-dark:hover { border-color: var(--gold); }

.card-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--gold-grad); color: #1a1205;
  font-family: var(--font-head); font-weight: 900; font-size: 1.1rem;
  margin-bottom: 1rem;
}
.card-ico { width: 40px; height: 40px; fill: var(--gold); margin-bottom: 1rem; }

/* feature card with image */
.fcard { background: #fff; border: 1px solid var(--paper-3); border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .18s, box-shadow .18s; display: flex; flex-direction: column; }
.fcard:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.fcard img { aspect-ratio: 3/2; object-fit: cover; width: 100%; }
.fcard-body { padding: 26px 24px; flex: 1; display: flex; flex-direction: column; }
.fcard-body h3 { margin-bottom: .5rem; }
.fcard-body .btn { margin-top: auto; align-self: flex-start; }

/* ---------- split rows ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 5vw, 68px); align-items: center; }
.split + .split { margin-top: clamp(48px, 7vw, 88px); }
.split img { border-radius: var(--r-lg); box-shadow: var(--shadow); width: 100%; }
.split .ph-portrait { aspect-ratio: 4/5; object-fit: cover; }
.split .ph-land { aspect-ratio: 4/3; object-fit: cover; }
.split-rev .split-media { order: 2; }
@media (max-width: 860px) { .split { grid-template-columns: 1fr; } .split-rev .split-media { order: 0; } }

/* ---------- checklist ---------- */
.checks { list-style: none; padding: 0; margin: 0 0 1.4em; }
.checks li { position: relative; padding-left: 34px; margin-bottom: .7em; }
.checks li::before {
  content: ""; position: absolute; left: 0; top: .42em;
  width: 19px; height: 19px; border-radius: 50%;
  background: var(--gold-grad);
}
.checks li::after {
  content: ""; position: absolute; left: 6px; top: .72em;
  width: 7px; height: 4px; border-left: 2px solid #1a1205; border-bottom: 2px solid #1a1205;
  transform: rotate(-45deg);
}

/* ---------- stats ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
@media (max-width: 760px) { .stats { grid-template-columns: repeat(2, 1fr); } }
.stat { text-align: center; padding: 26px 14px; border: 1px solid var(--line); border-radius: var(--r-lg); background: var(--ink-2); }
.stat .n { font-family: var(--font-head); font-size: clamp(1.9rem, 4vw, 2.7rem); font-weight: 900; color: var(--gold-lt); line-height: 1; display: block; }
.stat .l { font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; color: var(--on-dark-dim); margin-top: .6rem; display: block; font-family: var(--font-head); font-weight: 700; }

/* ---------- steps ---------- */
.steps { counter-reset: step; display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
@media (max-width: 860px) { .steps { grid-template-columns: 1fr; } }

/* ---------- forms ---------- */
.formwrap { background: #fff; border: 1px solid var(--paper-3); border-radius: var(--r-lg); padding: clamp(26px, 4vw, 40px); box-shadow: var(--shadow); }
.formwrap.on-dark { background: var(--ink-2); border-color: var(--line); }
.formwrap.on-dark label { color: var(--on-dark); }
.formwrap.on-dark .field-help { color: var(--on-dark-dim); }
.formwrap.on-dark input, .formwrap.on-dark select, .formwrap.on-dark textarea {
  background: var(--ink-3); border-color: var(--line); color: #fff;
}
.formwrap.on-dark input::placeholder, .formwrap.on-dark textarea::placeholder { color: #6f6a61; }

.field { margin-bottom: 18px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 620px) { .field-row { grid-template-columns: 1fr; } }
label { display: block; font-family: var(--font-head); font-size: .78rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--ink); margin-bottom: 7px; }
.req { color: var(--gold-dk); }
input, select, textarea {
  width: 100%; padding: 13px 15px; font-family: var(--font-body); font-size: 1rem;
  color: var(--ink); background: #fff; border: 1px solid #cfc9bd; border-radius: var(--r);
  transition: border-color .15s, box-shadow .15s;
}
input:focus, select:focus, textarea:focus {
  outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(189,144,40,.2);
}
textarea { min-height: 120px; resize: vertical; }
.field-help { font-size: .82rem; color: var(--body-dim); margin-top: 6px; }
.form-note { font-size: .82rem; color: var(--body-dim); margin-top: 14px; }
.hp { position: absolute; left: -9999px; opacity: 0; }

/* ---------- FAQ ---------- */
.faq { border-top: 1px solid var(--paper-3); }
.faq details { border-bottom: 1px solid var(--paper-3); }
.faq summary {
  cursor: pointer; list-style: none; padding: 22px 46px 22px 0; position: relative;
  font-family: var(--font-head); font-weight: 700; font-size: 1.06rem; color: var(--ink);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; position: absolute; right: 8px; top: 30px;
  width: 11px; height: 11px; border-right: 2.5px solid var(--gold); border-bottom: 2.5px solid var(--gold);
  transform: rotate(45deg); transition: transform .2s;
}
.faq details[open] summary::after { transform: rotate(-135deg); top: 34px; }
.faq summary:hover { color: var(--gold-dk); }
.faq .faq-a { padding: 0 0 22px; }
.faq .faq-a > :last-child { margin-bottom: 0; }

/* ---------- partners ---------- */
.partners { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: clamp(26px, 5vw, 58px); }
.partners img { max-height: 54px; width: auto; opacity: .62; filter: grayscale(1); transition: opacity .2s, filter .2s; }
.partners img:hover { opacity: 1; filter: none; }
.sec-dark .partners img { filter: grayscale(1) invert(1) brightness(1.7); opacity: .55; }
.sec-dark .partners img:hover { opacity: .95; }

/* ---------- pull quote ---------- */
.pull {
  border-left: 4px solid var(--gold); padding: 8px 0 8px 26px; margin: 2rem 0;
  font-family: var(--font-head); font-size: clamp(1.15rem, 2.3vw, 1.5rem);
  font-weight: 700; color: var(--ink); line-height: 1.4; font-style: italic;
}
.sec-dark .pull { color: #fff; }

/* ---------- before / after ---------- */
.ba { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 620px) { .ba { grid-template-columns: 1fr; } }
.ba figure { margin: 0; position: relative; }
.ba img { border-radius: var(--r-lg); aspect-ratio: 3/4; object-fit: cover; width: 100%; box-shadow: var(--shadow-sm); }
.ba figcaption {
  position: absolute; top: 12px; left: 12px;
  background: var(--ink); color: var(--gold-lt); padding: 6px 14px; border-radius: 2px;
  font-family: var(--font-head); font-size: .7rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase;
}

/* ---------- blog ---------- */
.postlist { display: grid; gap: 26px; grid-template-columns: repeat(3, 1fr); list-style: none; padding: 0; margin: 0; }
@media (max-width: 980px) { .postlist { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 660px) { .postlist { grid-template-columns: 1fr; } }
.postlist li { margin: 0; }
.pcard { display: flex; flex-direction: column; height: 100%; background: #fff; border: 1px solid var(--paper-3); border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .18s, box-shadow .18s; }
.pcard:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.pcard img { aspect-ratio: 16/10; object-fit: cover; width: 100%; }
.pcard-body { padding: 24px 22px; display: flex; flex-direction: column; flex: 1; }
.pcard-body h3 { font-size: 1.12rem; margin-bottom: .5rem; }
.pcard-body h3 a { color: var(--ink); text-decoration: none; }
.pcard-body h3 a:hover { color: var(--gold-dk); }
.pmeta { font-size: .76rem; letter-spacing: .1em; text-transform: uppercase; color: var(--body-dim); font-family: var(--font-head); font-weight: 700; margin-bottom: .7rem; }
.pcard-body p { font-size: .95rem; margin-bottom: 0; }

.prose { max-width: 72ch; }
.prose h2 { margin-top: 2.2em; }
.prose h3 { margin-top: 1.8em; }
.prose img { border-radius: var(--r-lg); margin: 1.8em 0; }
.prose blockquote { border-left: 4px solid var(--gold); margin: 1.8em 0; padding-left: 24px; color: var(--ink); font-style: italic; }
.prose table { width: 100%; border-collapse: collapse; margin: 1.8em 0; font-size: .95rem; }
.prose th, .prose td { border: 1px solid var(--paper-3); padding: 11px 14px; text-align: left; }
.prose th { background: var(--paper-2); font-family: var(--font-head); font-size: .8rem; letter-spacing: .06em; text-transform: uppercase; }

/* ---------- CTA band ---------- */
.cta-band {
  background: var(--ink); color: var(--on-dark); text-align: center;
  padding: clamp(52px, 7vw, 84px) 0; position: relative; overflow: hidden;
}
.cta-band::before {
  content: ""; position: absolute; inset: 0;
  background-image: url("/assets/img/gold-swoosh.webp");
  background-repeat: no-repeat; background-position: center; background-size: 130% auto;
  opacity: .12;
}
.cta-band .wrap { position: relative; z-index: 1; }
.cta-band h2 { color: #fff; }
.cta-band p { color: var(--on-dark-dim); max-width: 56ch; margin-inline: auto; }
.cta-band .cta-row { justify-content: center; margin-top: 1.8rem; }

/* ---------- footer ---------- */
.site-footer { background: var(--ink-2); color: var(--on-dark-dim); padding: clamp(48px, 6vw, 72px) 0 32px; font-size: .92rem; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 36px; }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
.foot-slay { width: 118px; margin-bottom: 14px; }
.footer-name { font-family: var(--font-head); font-weight: 800; color: #fff; margin-bottom: .3em; }
.footer-line { margin-bottom: .7em; line-height: 1.7; }
.site-footer a { color: var(--on-dark-dim); text-decoration: none; }
.site-footer a:hover { color: var(--gold-lt); text-decoration: underline; }
.footer-col h3 { font-size: .8rem; letter-spacing: .14em; text-transform: uppercase; color: var(--gold-lt); margin-bottom: 1rem; }
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: .6em; }

.social { display: flex; gap: 12px; list-style: none; padding: 0; margin: 18px 0 0; }
.social li { margin: 0; }
.social a { display: grid; place-items: center; width: 38px; height: 38px; border: 1px solid var(--line); border-radius: 50%; }
.social a:hover { background: var(--gold); border-color: var(--gold); }
.social svg { width: 17px; height: 17px; fill: var(--on-dark-dim); }
.social a:hover svg { fill: #1a1205; }

.service-area { margin-top: 42px; padding-top: 26px; border-top: 1px solid var(--line); }
.service-area h3 { font-size: .8rem; letter-spacing: .14em; text-transform: uppercase; color: var(--gold-lt); margin-bottom: .7rem; }
.service-area p { font-size: .84rem; color: #7d776d; margin: 0; }

.legal { margin-top: 26px; padding-top: 22px; border-top: 1px solid var(--line); font-size: .78rem; color: #7d776d; }
.legal p { margin-bottom: .7em; }
.disclaimer { max-width: 90ch; line-height: 1.7; }

/* ---------- misc ---------- */
.mt0 { margin-top: 0; } .mb0 { margin-bottom: 0; }
.mt2 { margin-top: 2rem; } .mt3 { margin-top: 3rem; }
.tag {
  display: inline-block; background: rgba(189,144,40,.14); color: var(--gold-dk);
  font-family: var(--font-head); font-size: .7rem; font-weight: 800;
  letter-spacing: .12em; text-transform: uppercase; padding: 5px 12px; border-radius: 2px;
}
.sec-dark .tag { background: rgba(230,198,109,.16); color: var(--gold-lt); }
