/* Content pages — typography & layout */
.page-hero {
  position: relative;
  min-height: 340px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(44,44,44,0.35) 0%, rgba(44,44,44,0.78) 100%);
}

.page-hero-inner {
  position: relative;
  z-index: 2;
  padding: 56px 24px 48px;
  color: #fff;
  max-width: var(--container);
  margin-inline: auto;
  width: 100%;
}

.page-hero-inner h1 {
  font-family: var(--font-heading);
  font-size: 42px;
  line-height: 1.15;
  margin-bottom: 12px;
}

.page-hero-sub {
  font-size: 17px;
  opacity: 0.92;
  max-width: 560px;
  line-height: 1.6;
}

.page-main { padding-bottom: 0; }

.prose {
  padding: 56px 0 72px;
  font-size: 16px;
  line-height: 1.85;
  color: var(--brand-charcoal);
}

.prose .container-narrow { max-width: 820px; margin-inline: auto; padding-inline: 24px; }
.prose .container-wide { max-width: var(--container); margin-inline: auto; padding-inline: 24px; }

.prose h2 {
  font-family: var(--font-heading);
  font-size: 28px;
  margin: 2.2em 0 0.75em;
  color: var(--brand-dark);
}

.prose h2:first-child { margin-top: 0; }

.prose h3 {
  font-size: 18px;
  font-weight: 600;
  margin: 1.6em 0 0.5em;
  letter-spacing: 0.02em;
}

.prose p { margin-bottom: 1.15em; }

.prose ul, .prose ol {
  margin: 0 0 1.25em 1.35em;
}

.prose li { margin-bottom: 0.45em; }

.prose .lead {
  font-size: 18px;
  line-height: 1.75;
  color: var(--brand-dark);
  margin-bottom: 1.5em;
}

.prose .callout {
  background: #fff;
  border-left: 4px solid var(--brand-accent);
  padding: 1.25rem 1.5rem;
  margin: 2rem 0;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.prose .two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
  margin: 2.5rem 0;
}

.prose figure {
  margin: 2rem 0;
}

.prose figure img {
  width: 100%;
  border-radius: 2px;
  aspect-ratio: 16/10;
  object-fit: cover;
}

.prose figcaption {
  font-size: 13px;
  opacity: 0.7;
  margin-top: 0.5rem;
}

.prose .img-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 2rem 0;
}

.prose .img-grid img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 2px;
}

.section-band {
  background: var(--brand-charcoal);
  color: #fff;
  padding: 48px 0;
  margin: 48px 0 0;
}

.section-band h2 { color: #fff; margin-top: 0; }
.section-band p { opacity: 0.88; }

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 2.5rem 0;
}

.card-grid article {
  background: #fff;
  border: 1px solid rgba(74,74,74,0.12);
  overflow: hidden;
  transition: transform 0.3s var(--ease);
}

.card-grid article:hover { transform: translateY(-4px); }

.card-grid img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
}

.card-grid .card-body { padding: 20px; }
.card-grid h3 { font-family: var(--font-heading); font-size: 18px; margin-bottom: 8px; }
.card-grid p { font-size: 14px; line-height: 1.6; opacity: 0.85; margin-bottom: 12px; }
.card-grid a.link-more { font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em; font-weight: 600; color: var(--brand-accent); }

.quote-form-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  padding: 56px 0 72px;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 24px;
}

.quote-form {
  background: #fff;
  padding: 32px;
  border: 1px solid rgba(74,74,74,0.12);
}

.quote-form label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 6px;
  font-weight: 600;
}

.quote-form input,
.quote-form textarea,
.quote-form select {
  width: 100%;
  padding: 12px;
  margin-bottom: 16px;
  border: 1px solid rgba(74,74,74,0.2);
  border-radius: 2px;
}

.quote-form input:focus,
.quote-form textarea:focus { outline: none; border-color: var(--brand-accent); }

.process-steps-inline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: 2rem 0;
}

.process-steps-inline div {
  padding: 20px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
}

.process-steps-inline strong {
  display: block;
  color: var(--brand-beige);
  font-size: 11px;
  letter-spacing: 0.12em;
  margin-bottom: 8px;
}
