/* ============================================
   Law Office of Kathleen M. Rose, PLLC
   ============================================ */
:root {
  --navy: #1b2a41;
  --navy-dark: #131f31;
  --gold: #b48a3f;
  --gold-light: #cfa96a;
  --cream: #faf7f2;
  --ink: #2c3038;
  --muted: #6b7280;
  --line: #e5e0d6;
  --white: #ffffff;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Source Sans 3', 'Segoe UI', Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  font-size: 17px;
}

h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  color: var(--navy);
  font-weight: 600;
  line-height: 1.2;
}

img { max-width: 100%; display: block; }
a { color: var(--gold); text-decoration: none; }
a:hover { text-decoration: underline; }

.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }

/* ---------- Top bar ---------- */
.topbar {
  background: var(--navy-dark);
  color: #cdd5e0;
  font-size: 14px;
  padding: 7px 0;
}
.topbar .container {
  display: flex; justify-content: space-between; align-items: center; gap: 12px; flex-wrap: wrap;
}
.topbar a { color: var(--gold-light); font-weight: 600; }

/* ---------- Header / nav ---------- */
header.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--line);
  position: sticky; top: 0; z-index: 100;
}
.nav-wrap {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 0; gap: 20px;
}
.brand { line-height: 1.15; }
.brand a { text-decoration: none; }
.brand .firm {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 24px; font-weight: 700; color: var(--navy);
  letter-spacing: .3px; display: block;
}
.brand .tagline {
  font-size: 12px; text-transform: uppercase; letter-spacing: 2.2px; color: var(--gold);
}
nav.main-nav { display: flex; align-items: center; gap: 26px; }
nav.main-nav a {
  color: var(--navy); font-weight: 600; font-size: 15.5px; text-decoration: none;
  padding: 4px 0; border-bottom: 2px solid transparent;
}
nav.main-nav a:hover, nav.main-nav a.active { border-bottom-color: var(--gold); }
.btn {
  display: inline-block; background: var(--gold); color: var(--white) !important;
  padding: 12px 26px; border-radius: 3px; font-weight: 700; font-size: 15.5px;
  letter-spacing: .4px; text-decoration: none !important; border: none; cursor: pointer;
  transition: background .2s;
}
.btn:hover { background: #9a7433; }
.btn-outline {
  background: transparent; color: var(--navy) !important;
  border: 2px solid var(--navy); padding: 10px 24px;
}
.btn-outline:hover { background: var(--navy); color: var(--white) !important; }
.btn-lg { padding: 15px 34px; font-size: 17px; }

/* mobile nav */
.nav-toggle { display: none; background: none; border: none; font-size: 26px; color: var(--navy); cursor: pointer; }
@media (max-width: 860px) {
  .nav-toggle { display: block; }
  nav.main-nav {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    background: var(--white); flex-direction: column; gap: 0;
    border-bottom: 1px solid var(--line); box-shadow: 0 12px 24px rgba(0,0,0,.08);
  }
  nav.main-nav.open { display: flex; }
  nav.main-nav a { padding: 14px 24px; width: 100%; border-bottom: 1px solid var(--line); }
  nav.main-nav .btn { margin: 14px 24px; width: auto; text-align: center; }
}

/* ---------- Hero ---------- */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, #24374f 60%, #2c405a 100%);
  color: #e8ebf0; overflow: hidden;
}
.hero .container {
  display: grid; grid-template-columns: 1.15fr .85fr; gap: 56px; align-items: center;
  padding-top: 72px; padding-bottom: 72px;
}
.hero h1 {
  color: var(--white); font-size: 46px; font-weight: 700; margin-bottom: 18px;
}
.hero h1 em { color: var(--gold-light); font-style: normal; }
.hero p.lead { font-size: 19px; color: #c3ccd9; margin-bottom: 30px; max-width: 34em; }
.hero .cta-row { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }
.hero .phone-cta { color: var(--white); font-weight: 700; font-size: 18px; }
.hero .phone-cta small { display: block; font-weight: 400; font-size: 13px; color: #9fabbd; }
.hero-photo { position: relative; }
.hero-photo img {
  border-radius: 4px; box-shadow: 0 24px 60px rgba(0,0,0,.35);
  border: 1px solid rgba(255,255,255,.15);
}
.hero-photo .caption {
  position: absolute; left: 18px; bottom: 18px; right: 18px;
  background: rgba(19,31,49,.88); padding: 12px 18px; border-left: 3px solid var(--gold);
  font-size: 14.5px; color: #dfe5ec; border-radius: 2px;
}
.hero-photo .caption strong { color: var(--white); display: block; font-size: 16px; }
@media (max-width: 860px) {
  .hero .container { grid-template-columns: 1fr; gap: 36px; padding-top: 48px; padding-bottom: 48px; }
  .hero h1 { font-size: 34px; }
  .hero-photo { max-width: 380px; }
}

/* ---------- Trust bar ---------- */
.trustbar { background: var(--cream); border-bottom: 1px solid var(--line); }
.trustbar .container {
  display: flex; justify-content: space-between; gap: 24px; padding: 22px 24px; flex-wrap: wrap;
}
.trust-item { display: flex; align-items: center; gap: 12px; font-size: 15px; color: var(--navy); font-weight: 600; }
.trust-item .dot { color: var(--gold); font-size: 20px; }

/* ---------- Sections ---------- */
section.block { padding: 76px 0; }
section.block.alt { background: var(--cream); }
.section-label {
  text-transform: uppercase; letter-spacing: 3px; font-size: 12.5px;
  color: var(--gold); font-weight: 700; margin-bottom: 10px;
}
section.block h2 { font-size: 36px; margin-bottom: 16px; }
.section-intro { max-width: 46em; color: var(--muted); margin-bottom: 42px; }

/* services grid */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.service-card {
  background: var(--white); border: 1px solid var(--line); border-top: 3px solid var(--gold);
  padding: 30px 26px; border-radius: 3px; transition: transform .2s, box-shadow .2s;
}
.service-card:hover { transform: translateY(-4px); box-shadow: 0 16px 34px rgba(27,42,65,.10); }
.service-card h3 { font-size: 22px; margin-bottom: 10px; }
.service-card p { font-size: 15.5px; color: var(--muted); margin-bottom: 14px; }
.service-card a { font-weight: 700; font-size: 14.5px; letter-spacing: .3px; }
@media (max-width: 860px) { .services-grid { grid-template-columns: 1fr; } }

/* why-us */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
@media (max-width: 860px) { .split { grid-template-columns: 1fr; } }
.checklist { list-style: none; margin-top: 8px; }
.checklist li { padding: 10px 0 10px 34px; position: relative; border-bottom: 1px solid var(--line); }
.checklist li:last-child { border-bottom: none; }
.checklist li::before {
  content: "✓"; position: absolute; left: 0; top: 9px;
  color: var(--gold); font-weight: 700; font-size: 18px;
}
.portrait-frame img { border-radius: 4px; box-shadow: 0 18px 44px rgba(27,42,65,.18); }

/* steps */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin-top: 10px; }
.step { background: var(--white); border: 1px solid var(--line); padding: 28px 24px; border-radius: 3px; }
.step .num {
  font-family: 'Cormorant Garamond', Georgia, serif; font-size: 42px; color: var(--gold);
  font-weight: 700; line-height: 1; margin-bottom: 12px;
}
.step h3 { font-size: 20px; margin-bottom: 8px; }
.step p { font-size: 15px; color: var(--muted); }
@media (max-width: 860px) { .steps { grid-template-columns: 1fr; } }

/* ---------- Lead form ---------- */
.lead-section { background: var(--navy); color: #d7dde6; }
.lead-section h2 { color: var(--white); }
.lead-section .section-label { color: var(--gold-light); }
.lead-wrap { display: grid; grid-template-columns: .9fr 1.1fr; gap: 56px; align-items: start; }
@media (max-width: 860px) { .lead-wrap { grid-template-columns: 1fr; } }
.lead-side p { margin-bottom: 18px; }
.lead-side .phone-big { font-size: 26px; font-weight: 700; color: var(--white); display: block; margin: 6px 0 22px; }
.lead-side ul { list-style: none; }
.lead-side ul li { padding: 8px 0 8px 28px; position: relative; font-size: 15.5px; }
.lead-side ul li::before { content: "—"; position: absolute; left: 0; color: var(--gold-light); }

form.lead-form {
  background: var(--white); padding: 36px 32px; border-radius: 4px;
  box-shadow: 0 24px 60px rgba(0,0,0,.30); color: var(--ink);
}
form.lead-form h3 { font-size: 24px; margin-bottom: 4px; }
form.lead-form .form-note { font-size: 14px; color: var(--muted); margin-bottom: 22px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 620px) { .form-row { grid-template-columns: 1fr; } }
.field { margin-bottom: 16px; }
.field label { display: block; font-size: 13.5px; font-weight: 700; color: var(--navy); margin-bottom: 6px; letter-spacing: .3px; }
.field input, .field select, .field textarea {
  width: 100%; padding: 12px 14px; border: 1px solid #cfd4dc; border-radius: 3px;
  font-family: inherit; font-size: 15.5px; color: var(--ink); background: #fdfdfc;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(180,138,63,.15);
}
.field textarea { resize: vertical; min-height: 110px; }
form.lead-form .btn { width: 100%; margin-top: 6px; }
.privacy-note { font-size: 12.5px; color: var(--muted); margin-top: 14px; line-height: 1.5; }

/* ---------- Services page ---------- */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, #24374f 100%);
  color: var(--white); padding: 60px 0;
}
.page-hero h1 { color: var(--white); font-size: 42px; margin-bottom: 10px; }
.page-hero p { color: #c3ccd9; max-width: 44em; font-size: 18px; }
.service-detail { padding: 56px 0; border-bottom: 1px solid var(--line); }
.service-detail:last-of-type { border-bottom: none; }
.service-detail h2 { font-size: 30px; margin-bottom: 14px; }
.service-detail p { max-width: 50em; margin-bottom: 14px; }
.service-detail ul { margin: 6px 0 14px 22px; }
.service-detail ul li { margin-bottom: 6px; }

/* ---------- About page ---------- */
.about-grid { display: grid; grid-template-columns: 340px 1fr; gap: 56px; align-items: start; }
@media (max-width: 860px) { .about-grid { grid-template-columns: 1fr; } }
.about-grid .credentials {
  background: var(--cream); border: 1px solid var(--line); padding: 24px;
  border-radius: 3px; margin-top: 24px; font-size: 15px;
}
.about-grid .credentials h4 { margin-bottom: 10px; font-size: 18px; }
.about-grid .credentials ul { list-style: none; }
.about-grid .credentials li { padding: 6px 0; border-bottom: 1px solid var(--line); }
.about-grid .credentials li:last-child { border-bottom: none; }
.bio p { margin-bottom: 16px; }

/* ---------- Contact page ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 56px; align-items: start; }
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-info h3 { font-size: 22px; margin: 22px 0 6px; }
.contact-info p { color: var(--muted); }
.contact-info a.big { font-size: 22px; font-weight: 700; }
.map-embed { margin-top: 30px; border-radius: 4px; overflow: hidden; border: 1px solid var(--line); }
.map-embed iframe { width: 100%; height: 300px; border: 0; display: block; }

/* ---------- CTA band ---------- */
.cta-band { background: var(--gold); padding: 48px 0; }
.cta-band .container { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.cta-band h2 { color: var(--white); font-size: 30px; margin: 0; }
.cta-band .btn { background: var(--navy); }
.cta-band .btn:hover { background: var(--navy-dark); }

/* ---------- Footer ---------- */
footer.site-footer { background: var(--navy-dark); color: #97a3b4; padding: 56px 0 28px; font-size: 15px; }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 44px; margin-bottom: 36px; }
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr; } }
footer h4 { color: var(--white); font-size: 19px; margin-bottom: 14px; }
footer ul { list-style: none; }
footer ul li { padding: 5px 0; }
footer a { color: #c2cbd8; }
footer a:hover { color: var(--gold-light); }
.footer-bottom {
  border-top: 1px solid #2a3a52; padding-top: 22px; font-size: 12.5px; line-height: 1.6; color: #6f7d92;
}

/* thank-you page */
.thanks { text-align: center; padding: 110px 24px; }
.thanks h1 { font-size: 40px; margin-bottom: 16px; }
.thanks p { max-width: 36em; margin: 0 auto 28px; color: var(--muted); font-size: 18px; }
