/* Pacific Coast Debt Recovery, LLC
   Single stylesheet. Palette and spacing live in :root — change them there. */

:root {
  --navy-900: #0a1c2e;
  --navy-800: #102d47;
  --navy-700: #17436b;
  --navy-600: #1f5789;
  --brass:    #c19a4b;
  --brass-dk: #9c7a33;

  --ink:      #16222e;
  --body:     #41535f;
  --muted:    #6c7d89;
  --rule:     #dde4ea;
  --tint:     #f4f7f9;
  --paper:    #ffffff;

  --wrap: 1140px;
  --gap: 1.5rem;

  --serif: Georgia, "Times New Roman", serif;
  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--body);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--serif);
  color: var(--ink);
  line-height: 1.22;
  margin: 0 0 .6em;
  font-weight: 700;
}

h1 { font-size: clamp(2rem, 4.2vw, 3rem); letter-spacing: -.01em; }
h2 { font-size: clamp(1.6rem, 2.8vw, 2.15rem); }
h3 { font-size: 1.25rem; }

p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }

a { color: var(--navy-600); }
a:hover { color: var(--navy-800); }

.wrap {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.narrow { max-width: 780px; }

section { padding: 4.5rem 0; }
section.tight { padding: 3rem 0; }
.tinted { background: var(--tint); }
.inked { background: var(--navy-900); color: #c3d2de; }
.inked h2, .inked h3 { color: #fff; }

/* ---------- Header ---------- */

.site-header {
  background: var(--navy-900);
  border-bottom: 3px solid var(--brass);
  position: sticky;
  top: 0;
  z-index: 50;
}

.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 78px;
}

.brand {
  display: flex;
  align-items: center;
  gap: .7rem;
  text-decoration: none;
  color: #fff;
}

.brand .mark {
  width: 38px; height: 38px;
  flex: 0 0 38px;
}

.brand-name {
  font-family: var(--serif);
  font-size: 1.12rem;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: .01em;
}

.brand-sub {
  display: block;
  font-family: var(--sans);
  font-size: .64rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--brass);
  margin-top: 2px;
}

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 3px;
  color: #fff;
  padding: .5rem .7rem;
  font-size: .9rem;
  cursor: pointer;
}

.site-nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 1.75rem;
  margin: 0;
  padding: 0;
}

.site-nav a {
  color: #d3dee7;
  text-decoration: none;
  font-size: .93rem;
  font-weight: 600;
  letter-spacing: .01em;
  padding: .35rem 0;
  border-bottom: 2px solid transparent;
}

.site-nav a:hover { color: #fff; border-bottom-color: var(--brass); }
.site-nav a[aria-current="page"] { color: #fff; border-bottom-color: var(--brass); }

.site-nav .nav-cta {
  background: var(--brass);
  color: var(--navy-900);
  padding: .6rem 1.1rem;
  border-radius: 3px;
  border-bottom: none;
}
.site-nav .nav-cta:hover { background: #d4ad5d; color: var(--navy-900); border-bottom-color: transparent; }

/* ---------- Buttons ---------- */

.btn {
  display: inline-block;
  padding: .85rem 1.7rem;
  font-family: var(--sans);
  font-size: .97rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 3px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background .15s, color .15s, border-color .15s;
}

.btn-primary { background: var(--brass); color: var(--navy-900); border-color: var(--brass); }
.btn-primary:hover { background: #d4ad5d; border-color: #d4ad5d; color: var(--navy-900); }

.btn-solid { background: var(--navy-800); color: #fff; border-color: var(--navy-800); }
.btn-solid:hover { background: var(--navy-900); border-color: var(--navy-900); color: #fff; }

.btn-ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.5); }
.btn-ghost:hover { background: rgba(255,255,255,.1); border-color: #fff; color: #fff; }

.btn-row { display: flex; flex-wrap: wrap; gap: .85rem; margin-top: 1.8rem; }

/* ---------- Hero ---------- */

.hero {
  background:
    linear-gradient(160deg, rgba(10,28,46,.96) 0%, rgba(23,67,107,.93) 100%),
    var(--navy-900);
  color: #cfdce7;
  padding: 5.5rem 0 5rem;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  right: -8%;
  bottom: -45%;
  width: 620px; height: 620px;
  border-radius: 50%;
  border: 1px solid rgba(193,154,75,.22);
  pointer-events: none;
}

.hero h1 { color: #fff; max-width: 17ch; }

.hero .lede {
  font-size: 1.19rem;
  max-width: 56ch;
  color: #b9cbd9;
}

.eyebrow {
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 1rem;
}

.page-head {
  background: var(--navy-900);
  color: #b9cbd9;
  padding: 3.5rem 0 3rem;
}
.page-head h1 { color: #fff; margin-bottom: .35rem; }
.page-head p { max-width: 62ch; margin: 0; }

/* ---------- Trust bar ---------- */

.trust-bar {
  background: var(--navy-800);
  border-top: 1px solid rgba(255,255,255,.09);
  padding: 1.5rem 0;
}

.trust-bar ul {
  list-style: none;
  margin: 0; padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem 2rem;
}

.trust-bar li {
  color: #cddae4;
  font-size: .9rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: .55rem;
}

.trust-bar svg { flex: 0 0 18px; color: var(--brass); }

/* ---------- Grid / cards ---------- */

.grid { display: grid; gap: var(--gap); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }

.card {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-top: 3px solid var(--brass);
  border-radius: 3px;
  padding: 2rem 1.75rem;
}

.card h3 { margin-bottom: .5rem; }
.card p { font-size: .98rem; }

.card .icon {
  color: var(--navy-700);
  margin-bottom: 1rem;
  display: block;
}

.section-head { max-width: 62ch; margin-bottom: 2.5rem; }
.section-head p { color: var(--muted); font-size: 1.08rem; margin-bottom: 0; }

/* ---------- Numbered process ---------- */

.steps {
  list-style: none;
  counter-reset: step;
  margin: 0; padding: 0;
  display: grid;
  gap: 1.25rem;
}

.steps li {
  counter-increment: step;
  position: relative;
  padding-left: 4.25rem;
  min-height: 3rem;
}

.steps li::before {
  content: counter(step, decimal-leading-zero);
  position: absolute;
  left: 0; top: -.1rem;
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--brass);
  border-right: 2px solid var(--rule);
  width: 3rem;
  padding-right: 1rem;
  text-align: right;
}

.steps h3 { font-size: 1.08rem; margin-bottom: .25rem; }
.steps p { font-size: .98rem; margin: 0; color: var(--body); }

/* ---------- Check list ---------- */

.checks { list-style: none; margin: 0; padding: 0; }
.checks li {
  position: relative;
  padding-left: 1.9rem;
  margin-bottom: .8rem;
}
.checks li::before {
  content: "";
  position: absolute;
  left: 0; top: .55rem;
  width: .55rem; height: .55rem;
  background: var(--brass);
  transform: rotate(45deg);
}

/* ---------- CTA strip ---------- */

.cta-strip {
  background: var(--navy-800);
  color: #cbd9e4;
  padding: 3.5rem 0;
  text-align: center;
}
.cta-strip h2 { color: #fff; }
.cta-strip p { max-width: 58ch; margin: 0 auto 1.6rem; }
.cta-strip .btn-row { justify-content: center; margin-top: 0; }

/* ---------- Notice boxes ---------- */

.notice {
  border: 1px solid var(--rule);
  border-left: 4px solid var(--navy-700);
  background: var(--tint);
  padding: 1.5rem 1.6rem;
  border-radius: 3px;
  margin: 0 0 1.75rem;
}

.notice.legal { border-left-color: var(--brass); }
.notice h3 { font-size: 1.05rem; margin-bottom: .5rem; }
.notice p { font-size: .97rem; }
.notice p:last-child { margin-bottom: 0; }

/* ---------- Contact ---------- */

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 3.5rem;
  align-items: start;
}

.contact-detail { margin-bottom: 1.75rem; }
.contact-detail dt {
  font-size: .73rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: .3rem;
}
.contact-detail dd {
  margin: 0;
  font-size: 1.1rem;
  color: var(--ink);
  font-weight: 600;
}
.contact-detail dd a { text-decoration: none; }

/* ---------- Form ---------- */

form { display: grid; gap: 1.15rem; }

.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.15rem; }

label {
  display: block;
  font-size: .87rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: .35rem;
}

label .opt { font-weight: 400; color: var(--muted); }

input, select, textarea {
  width: 100%;
  font-family: inherit;
  font-size: 1rem;
  color: var(--ink);
  padding: .7rem .85rem;
  border: 1px solid #c3ced7;
  border-radius: 3px;
  background: #fff;
}

input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--navy-600);
  box-shadow: 0 0 0 3px rgba(31,87,137,.15);
}

textarea { min-height: 130px; resize: vertical; }

.hp { position: absolute; left: -9999px; }

.form-note { font-size: .85rem; color: var(--muted); margin: 0; }

/* ---------- Footer ---------- */

.site-footer {
  background: var(--navy-900);
  color: #93a8b9;
  padding: 3.5rem 0 0;
  font-size: .92rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
}

.site-footer h4 {
  color: #fff;
  font-family: var(--sans);
  font-size: .74rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin-bottom: .55rem; }
.site-footer a { color: #93a8b9; text-decoration: none; }
.site-footer a:hover { color: #fff; text-decoration: underline; }

.footer-legal {
  border-top: 1px solid rgba(255,255,255,.11);
  padding: 1.75rem 0 2.5rem;
  font-size: .82rem;
  line-height: 1.65;
  color: #7d92a3;
}
.footer-legal p { margin-bottom: .8rem; }
.footer-legal strong { color: #b6c6d3; }

/* Cal. Civ. Code s 1788.11(f) requires the license number at >= 12-point type.
   16px == 12pt. Do not shrink this. */
.disclosure {
  font-size: 16px;
  line-height: 1.6;
  color: #b6c6d3;
}

.placeholder {
  background: rgba(193,154,75,.18);
  border-bottom: 1px dashed var(--brass);
  padding: 0 .2em;
}

/* ---------- Responsive ---------- */

@media (max-width: 900px) {
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .contact-layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  section { padding: 3.25rem 0; }

  .nav-toggle { display: block; }

  .site-nav {
    display: none;
    position: absolute;
    left: 0; right: 0;
    top: 100%;
    background: var(--navy-800);
    border-top: 1px solid rgba(255,255,255,.12);
    padding: 1rem 1.5rem 1.5rem;
  }
  .site-nav.open { display: block; }
  .site-nav ul { flex-direction: column; align-items: stretch; gap: 0; }
  .site-nav li { border-bottom: 1px solid rgba(255,255,255,.09); }
  .site-nav li:last-child { border-bottom: none; padding-top: 1rem; }
  .site-nav a { display: block; padding: .85rem 0; border-bottom: none; }
  .site-nav .nav-cta { text-align: center; }

  .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .trust-bar ul { flex-direction: column; gap: .75rem; }
  .hero { padding: 3.5rem 0; }
  .steps li { padding-left: 3.4rem; }
  .steps li::before { width: 2.4rem; padding-right: .7rem; font-size: 1.25rem; }
}
