/* ----------------------------------------------------------
   IRIS. Premium minimal stylesheet.
   Off-white paper, deep navy ink, muted gold accent.
   Conservative. Editorial. Lawyer-friendly.
   ---------------------------------------------------------- */

:root {
  --ink:        #1a2a44;
  --ink-soft:   #2a3a55;
  --ink-muted:  #5e6a80;
  --paper:      #fbfaf7;
  --paper-alt:  #f3f0e9;
  --rule:       #d9d3c4;
  --gold:       #a98b4d;

  --measure:    72rem;     /* container width on desktop (~1152px) */
  --reading:    62ch;      /* prose width within the container */

  --serif:      "Iowan Old Style", "Palatino Linotype", Georgia, "Times New Roman", Times, serif;
  --sans:       -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 18px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.container {
  max-width: var(--measure);
  margin: 0 auto;
  padding: 0 2.5rem;
}

/* ---------- Typography ---------- */

h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.005em;
  line-height: 1.18;
  margin: 0 0 0.75em;
}

h1 { font-size: 3.1rem; max-width: 22ch; }
h2 { font-size: 1.6rem; }
h3 { font-size: 1.2rem; }

p {
  margin: 0 0 1em;
  color: var(--ink);
  max-width: var(--reading);
}

.lede {
  font-size: 1.2rem;
  color: var(--ink-soft);
  max-width: 56ch;
}

.muted {
  color: var(--ink-muted);
  font-size: 0.95rem;
}

a {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  text-decoration-color: var(--rule);
}
a:hover { text-decoration-color: var(--gold); }

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

.site-header {
  border-bottom: 1px solid var(--rule);
  padding: 1.75rem 0;
  background: var(--paper);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.brand {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}
.brand img {
  display: block;
  height: 120px;
  width: auto;
}

.site-header nav a {
  font-family: var(--sans);
  font-size: 0.92rem;
  letter-spacing: 0.06em;
  text-decoration: none;
  margin-left: 2rem;
  color: var(--ink-muted);
}
.site-header nav a:hover { color: var(--ink); }
.site-header nav a:first-child { margin-left: 0; }

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

.hero {
  padding: 6rem 0 4.5rem;
  border-bottom: 1px solid var(--rule);
  background: var(--paper);
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -1px;
  transform: translateX(-50%);
  width: 100px;
  height: 1px;
  background: var(--gold);
  opacity: 0.7;
}

.hero h1 { max-width: 24ch; }
.hero .lede { max-width: 60ch; }

.cta-row {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero-aside {
  margin-top: 1.4rem;
  font-size: 0.95rem;
  color: var(--ink-muted);
}
.hero-aside a {
  color: var(--gold);
  text-decoration: underline;
  text-decoration-color: var(--rule);
  text-underline-offset: 4px;
}
.hero-aside a:hover { text-decoration-color: var(--gold); }

/* ---------- Sections ---------- */

.section {
  padding: 4.5rem 0;
  border-bottom: 1px solid var(--rule);
}

.section.alt { background: var(--paper-alt); }

.section h2 {
  font-family: var(--sans);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 2rem;
}

/* Generic section paragraphs are reading-width unless inside a grid item */
.section > .container > p { max-width: var(--reading); }

/* ---------- Services (two-column on desktop) ---------- */

#services {
  padding-top: 120px;
  padding-bottom: 120px;
}

#services h2 {
  margin-bottom: 24px;
}

.services-divider {
  width: 100%;
  height: 1px;
  background: #E8E4DA;
  border: 0;
  margin: 0 0 64px;
}

#services .services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
  column-gap: 80px;
  row-gap: 0;
  margin: 0;
}

#services .services-grid .item,
#services .services-grid .item.card {
  border-top: none;
  border-bottom: none;
  padding: 0;
  margin: 0;
}

#services .services-grid .item h3 {
  margin: 0 0 12px;
}

#services .services-grid .item .price {
  margin: 0 0 24px;
  color: #6B6B6B;
}

#services .services-grid .item .card-body {
  line-height: 1.7;
  margin: 0;
  border: 0;
  max-width: 52ch;
}

#services .rush-note {
  margin: 64px 0 0;
  padding-top: 32px;
  border-top: 1px solid #E8E4DA;
  font-size: 0.9rem;
  color: var(--ink-muted);
  max-width: none;
}

/* ---------- Process ---------- */

.process {
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: step;
}

.process li {
  counter-increment: step;
  padding: 1.6rem 0 1.6rem 3.5rem;
  border-top: 1px solid var(--rule);
  position: relative;
}
.process li:first-child { border-top: none; padding-top: 0.4rem; }

.process li::before {
  content: counter(step, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 1.65rem;
  font-family: var(--serif);
  font-size: 1.05rem;
  color: var(--gold);
  letter-spacing: 0.05em;
}
.process li:first-child::before { top: 0.35rem; }

.process h3 {
  margin-bottom: 0.35rem;
  font-size: 1.2rem;
}
.process p {
  color: var(--ink-soft);
  margin: 0;
  max-width: 60ch;
}

/* ---------- Generic items (FAQ entries etc.) ---------- */

.item {
  padding: 1.75rem 0;
  border-top: 1px solid var(--rule);
}
.item:first-of-type { border-top: none; padding-top: 0.4rem; }

.item h3 { margin-bottom: 0.4rem; font-size: 1.2rem; }
.item p {
  color: var(--ink-soft);
  margin: 0 0 0.5em;
  max-width: 56ch;
}
.item p:last-child { margin-bottom: 0; }

.item .price {
  font-family: var(--sans);
  font-size: 0.98rem;
  color: var(--ink-muted);
  letter-spacing: 0.04em;
  margin-bottom: 0.7rem;
}

/* ---------- FAQ grid (two-column on desktop) ---------- */

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 3.5rem;
  row-gap: 0;
}

.faq-grid .item {
  /* override default first-of-type stripping so each column has consistent rules */
  border-top: 1px solid var(--rule);
  padding-top: 1.75rem;
}
.faq-grid .item:nth-child(1),
.faq-grid .item:nth-child(2) {
  border-top: none;
  padding-top: 0.4rem;
}

/* ---------- CTA buttons ---------- */

.cta {
  display: inline-block;
  padding: 0.85rem 1.6rem;
  border: 1px solid var(--ink);
  text-decoration: none;
  font-family: var(--sans);
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  color: var(--ink);
  background: transparent;
  transition: background 120ms ease, color 120ms ease, border-color 120ms ease;
}
.cta:hover {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
  text-decoration: none;
}

.cta-primary {
  background: var(--ink);
  color: var(--paper);
}
.cta-primary:hover {
  background: var(--ink-soft);
  border-color: var(--ink-soft);
}

/* ---------- Examples ---------- */

ul.examples {
  list-style: none;
  padding: 0;
  margin: 0;
}
ul.examples li {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.75rem 0;
  border-top: 1px solid var(--rule);
}
ul.examples li:first-child { border-top: none; padding-top: 0.4rem; }

ul.examples li > div { flex: 1 1 auto; min-width: 0; max-width: 60ch; }
ul.examples h3 { font-size: 1.2rem; margin-bottom: 0.3rem; }
ul.examples .muted { margin: 0; font-size: 0.98rem; color: var(--ink-muted); max-width: 60ch; }

.download {
  flex: 0 0 auto;
  white-space: nowrap;
  align-self: center;
  font-family: var(--sans);
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
}
.download:hover { color: var(--gold); }

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

.site-footer {
  padding: 3rem 0 3.5rem;
  font-size: 0.88rem;
  color: var(--ink-muted);
  background: var(--paper);
  border-top: 1px solid var(--rule);
}

.site-footer .disclaimer {
  max-width: 80ch;
  color: var(--ink-muted);
  margin-bottom: 1.5rem;
}

.site-footer .brandline {
  font-family: var(--serif);
  letter-spacing: 0.04em;
  color: var(--ink);
  margin-bottom: 0.4rem;
  font-size: 1rem;
}

.site-footer .fineprint {
  font-size: 0.8rem;
  color: var(--ink-muted);
  margin: 0;
}

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

@media (max-width: 960px) {
  .container { padding: 0 1.75rem; }
  .faq-grid { grid-template-columns: 1fr; column-gap: 0; }
  .faq-grid .item { border-top: 1px solid var(--rule); padding-top: 1.75rem; }
  .faq-grid .item:nth-child(2) { border-top: 1px solid var(--rule); padding-top: 1.75rem; }
  .faq-grid .item:nth-child(1) { border-top: none; padding-top: 0.4rem; }
  h1 { font-size: 2.4rem; }
}

@media (max-width: 768px) {
  #services {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  #services .services-grid {
    grid-template-columns: 1fr;
    column-gap: 0;
    row-gap: 48px;
  }
}

@media (max-width: 720px) {
  body { font-size: 16px; }
  .container { padding: 0 1.25rem; }

  .hero { padding: 3.5rem 0 3rem; }
  .hero h1 { font-size: 1.95rem; }
  h2 { font-size: 1.3rem; }
  .lede { font-size: 1rem; }

  .section { padding: 3rem 0; }

  .site-header .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.85rem;
  }
  .site-header nav { display: flex; flex-wrap: wrap; }
  .site-header nav a { margin-left: 0; margin-right: 1.1rem; }

  .brand img { height: 84px; }

  .cta-row { flex-direction: column; align-items: stretch; }
  .cta { text-align: center; }

  ul.examples li { flex-direction: column; gap: 0.6rem; }
  .download { align-self: flex-start; }
}
