/* Florida Contract Lawyer — homepage (design 2a: premium, revised)
   Palette: white #ffffff · ink #1c2532 · bronze #8a6d3f / #c2a878 */

:root {
  --ivory: #ffffff;
  --ink: #1c2532;
  --ink-soft: #2c3546;
  --muted: #4c5566;
  --footer-text: #5a6172;
  --bronze: #8a6d3f;
  --bronze-light: #c2a878;
  --rule: rgba(28, 37, 50, 0.16);
  --rule-soft: rgba(28, 37, 50, 0.12);
  --rule-header: rgba(28, 37, 50, 0.14);
  --serif: 'Source Serif 4', Georgia, serif;
  --sans: 'Archivo', system-ui, sans-serif;
  --pad-x: 56px;
}

* { box-sizing: border-box; }

@media (prefers-reduced-motion: no-preference) {
  html { scroll-behavior: smooth; }
}

body {
  margin: 0 auto;
  max-width: 1280px;
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}

h1, h2 { font-family: var(--serif); font-weight: 400; margin: 0; }

a { color: inherit; }

.eyebrow {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bronze);
  margin: 0 0 18px;
}

/* ---------- header ---------- */

.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  padding: 26px var(--pad-x);
  border-bottom: 1px solid var(--rule-header);
}

.brand {
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
}

/* redline mark: three rules, the middle one bronze */
.mark {
  display: flex;
  flex-direction: column;
  gap: 5px;
  flex: none;
  width: 34px;
}
.mark span { height: 2.5px; background: var(--ink); }
.mark span:nth-child(2) { background: var(--bronze); width: 70%; }

.mark-sm { width: 26px; gap: 4px; }
.mark-sm span { height: 2px; }

.brand-name {
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 600;
  letter-spacing: 0.01em;
}
.brand-name-sm { font-size: 17px; font-weight: 400; }

.site-nav {
  display: flex;
  gap: 32px;
  align-items: center;
  flex-wrap: wrap;
  font-size: 12.5px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}
.site-nav a { color: var(--ink); text-decoration: none; }
.site-nav a:hover { color: var(--bronze); }
.site-nav .nav-cta {
  color: var(--bronze);
  border-bottom: 1px solid var(--bronze);
  padding-bottom: 2px;
  font-weight: 600;
}
.site-nav .nav-cta:hover { color: var(--ink); border-color: var(--ink); }

/* ---------- hero ---------- */

.hero { padding: 104px var(--pad-x) 72px; }

.hero .eyebrow { margin-bottom: 26px; }

.hero h1 {
  font-size: clamp(38px, 5.5vw, 66px);
  line-height: 1.06;
  letter-spacing: -0.01em;
  max-width: 900px;
  text-wrap: pretty;
}

.hero-sub {
  font-size: 18px;
  line-height: 1.6;
  color: var(--muted);
  max-width: 600px;
  margin: 30px 0 0;
}

.hero-actions {
  display: flex;
  gap: 28px;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 40px;
}

.btn {
  display: inline-block;
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 17px 34px;
  transition: background 0.15s ease;
}
.btn-dark { background: var(--ink); color: var(--ivory); }
.btn-dark:hover { background: #2c3b52; }
.btn-light { background: var(--ivory); color: var(--ink); font-weight: 600; padding: 17px 38px; }
.btn-light:hover { background: #e7eaef; }

.link-underline {
  color: var(--ink);
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(28, 37, 50, 0.4);
  padding-bottom: 3px;
}
.link-underline:hover { border-color: var(--ink); }

.hero-props {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 88px;
  border-top: 1px solid var(--rule);
  padding-top: 26px;
  max-width: 860px;
}
.hero-props .prop-title {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
  color: var(--ink);
  margin: 0;
}
.hero-props p {
  font-size: 13.5px;
  color: var(--muted);
  margin: 5px 0 0;
  line-height: 1.5;
}

/* ---------- sections ---------- */

.section { padding: 84px var(--pad-x); scroll-margin-top: 72px; }
.final-cta { scroll-margin-top: 72px; }

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 24px;
  margin-bottom: 44px;
}
.section-head h2 { font-size: 38px; }

.section-tag {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bronze);
}
.section-dark .section-tag { color: var(--bronze-light); }

.section-lede {
  font-size: 15px;
  color: var(--muted);
  max-width: 620px;
  margin: 0 0 48px;
  line-height: 1.6;
}

.section-footnote { font-size: 13px; color: var(--muted); margin: 26px 0 0; }
.section-footnote.ruled {
  margin-top: 44px;
  border-top: 1px solid var(--rule);
  padding-top: 20px;
}

.section-dark { background: var(--ink); color: var(--ivory); }

.ruled-top { border-top: 1px solid var(--rule); margin: 0 var(--pad-x); padding: 64px 0 84px; }

/* ---------- contracts ---------- */

.contract-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: repeat(5, auto);
  grid-auto-flow: column;
  column-gap: 64px;
}
.contract-list li {
  border-top: 1px solid var(--rule);
  padding: 18px 0;
  display: flex;
  gap: 22px;
  align-items: baseline;
  font-family: var(--serif);
  font-size: 22px;
}
.contract-list .num { color: var(--bronze); font-size: 15px; }

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

#process .section-head { margin-bottom: 52px; }

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 44px;
}
.step-numeral { font-family: var(--serif); font-size: 44px; color: var(--bronze-light); }
.process-step h3 { font-size: 16px; font-weight: 600; margin: 14px 0 8px; }
.process-step p {
  font-size: 13.5px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.72);
  margin: 0;
}

.process-note {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin: 56px 0 0;
  padding-top: 22px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
}

/* ---------- pricing ---------- */

#pricing .section-head { margin-bottom: 24px; }

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

.pricing-col { border-left: 1px solid var(--rule); padding: 8px 36px 8px 28px; }

.pricing-label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bronze);
}
.pricing-fee { font-family: var(--serif); font-size: 42px; margin: 16px 0 4px; }
.pricing-unit { font-size: 12.5px; color: var(--muted); margin-bottom: 20px; }

.pricing-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink-soft);
  display: grid;
  gap: 9px;
}
.pricing-col li::before { content: "— "; }

/* drafting callout */
.drafting-callout {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 48px;
  background: var(--ink);
  color: var(--ivory);
  padding: 32px 36px;
  margin-top: 56px;
}
.drafting-label {
  font-family: var(--serif);
  font-size: 22px;
}
.drafting-callout p {
  font-size: 14px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.78);
  margin: 10px 0 0;
  max-width: 640px;
}
.drafting-cta {
  flex: none;
  color: var(--bronze-light);
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  border-bottom: 1px solid var(--bronze-light);
  padding-bottom: 3px;
  white-space: nowrap;
}
.drafting-cta:hover { color: var(--ivory); border-color: var(--ivory); }

/* ---------- split sections (why / faq) ---------- */

.section-split {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 64px;
  align-items: start;
}
.split-intro h2 { font-size: 34px; line-height: 1.2; text-wrap: pretty; }

.why-rows { display: grid; }
.why-row {
  border-bottom: 1px solid var(--rule-soft);
  padding: 18px 0;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 32px;
}
.why-row:last-child { border-bottom: none; }
.why-row h3 { font-family: var(--serif); font-size: 20px; font-weight: 400; margin: 0; }
.why-row p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
  align-self: center;
}

/* ---------- who does the work ---------- */

.cred-body p {
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--ink-soft);
  max-width: 640px;
  margin: 0 0 16px;
}
.cred-body p:last-of-type { margin-bottom: 32px; }
.cred-body b { font-weight: 600; }

.credentials {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 13.5px;
  color: var(--muted);
  display: grid;
  gap: 8px;
}
.credentials li { border-top: 1px solid var(--rule-soft); padding-top: 8px; }

/* ---------- faq ---------- */

.faq-item { border-bottom: 1px solid var(--rule-soft); padding: 22px 0; }
.faq-item:last-child { border-bottom: none; }
.faq-item h3 {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
  margin: 0 0 8px;
}
.faq-item p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
  max-width: 640px;
  margin: 0;
}

/* ---------- final cta ---------- */

.final-cta { padding: 88px var(--pad-x); text-align: center; }
.final-cta h2 {
  font-size: clamp(32px, 4vw, 44px);
  max-width: 720px;
  margin: 0 auto;
  line-height: 1.15;
  text-wrap: pretty;
}
.final-cta p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
  margin: 20px auto 36px;
  max-width: 480px;
  line-height: 1.6;
}

/* ---------- footer ---------- */

.site-footer {
  padding: 52px var(--pad-x) 44px;
  border-top: 1px solid var(--rule-header);
  font-size: 12px;
  color: var(--footer-text);
  line-height: 1.7;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  margin-bottom: 36px;
}

.footer-brand .brand { margin-bottom: 10px; }
.footer-brand .brand-name { color: var(--ink); }
.footer-grid p { margin: 0; }
.footer-grid a { color: var(--footer-text); }
.footer-grid a:hover { color: var(--ink); }

.footer-tag {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bronze);
  margin-bottom: 10px;
}

.footer-links { display: flex; flex-direction: column; gap: 6px; }
.footer-links .footer-tag { margin-bottom: 4px; }

.footer-legal {
  margin: 0;
  border-top: 1px solid rgba(28, 37, 50, 0.1);
  padding-top: 18px;
}

/* ---------- legal pages ---------- */

.legal-wrap { padding: 72px var(--pad-x) 96px; max-width: 860px; margin: 0 auto; }
.legal-wrap h1 {
  font-size: clamp(32px, 4vw, 44px);
  line-height: 1.1;
  margin: 0 0 10px;
}
.legal-updated { font-size: 12.5px; color: var(--muted); margin: 0 0 44px; }
.legal-wrap h2 {
  font-size: 24px;
  margin: 42px 0 12px;
}
.legal-wrap p, .legal-wrap li {
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink-soft);
  text-align: justify;
  hyphens: auto;
}
.legal-wrap .legal-updated { text-align: left; }
.legal-wrap p { margin: 0 0 14px; }
.legal-wrap ul { margin: 0 0 14px; padding-left: 22px; }
.legal-wrap li { margin-bottom: 6px; }
.legal-wrap a { color: var(--bronze); }

/* ---------- responsive ---------- */

@media (max-width: 1000px) {
  :root { --pad-x: 32px; }

  .hero { padding-top: 72px; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .section-split { grid-template-columns: 1fr; gap: 36px; }
  .ruled-top { margin: 0 var(--pad-x); }
}

@media (max-width: 720px) {
  :root { --pad-x: 20px; }

  /* sticky, compact header so the logo and nav stay reachable while scrolling */
  .site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: var(--ivory);
    padding-top: 12px;
    padding-bottom: 12px;
    gap: 10px;
  }
  .site-nav { gap: 14px; font-size: 11.5px; }
  .brand { gap: 12px; }
  .brand-name { font-size: 18px; }
  .mark { width: 26px; gap: 4px; }
  .mark span { height: 2px; }

  /* anchored sections must clear the sticky header */
  .section, .final-cta { scroll-margin-top: 104px; }

  .hero { padding-top: 56px; padding-bottom: 56px; }
  .hero-props { grid-template-columns: 1fr; gap: 24px; margin-top: 56px; }

  .section { padding-top: 56px; padding-bottom: 56px; }
  .section-head { flex-direction: column; gap: 8px; margin-bottom: 32px; }
  .section-head h2 { font-size: 30px; }
  .split-intro h2 { font-size: 28px; }

  .contract-list { grid-template-columns: 1fr; grid-auto-flow: row; grid-template-rows: none; }
  .contract-list li { font-size: 19px; }

  .process-grid { grid-template-columns: 1fr; gap: 32px; }
  /* numeral and step title share one line; description spans below */
  .process-step {
    display: grid;
    grid-template-columns: auto 1fr;
    column-gap: 12px;
    align-items: baseline;
  }
  .step-numeral { font-size: 26px; }
  .process-step h3 { margin: 0; }
  .process-step p { grid-column: 1 / -1; margin-top: 8px; }

  .pricing-grid { grid-template-columns: 1fr; gap: 40px; }
  .pricing-col { border-left: none; border-top: 1px solid var(--rule); padding: 24px 0 0; }

  .drafting-callout { flex-direction: column; align-items: flex-start; gap: 18px; padding: 26px 22px; }

  .why-row { grid-template-columns: 1fr; gap: 6px; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
}
