/* =========================================================
   PTP’s Lift & Fix - shared site styles
   ========================================================= */
:root {
  --navy: #0f1a20;
  --cream: #f5e0b7;
  --orange: #c65227;
  --blue: #4c8a9b;
  --light-bg: #fdfaf6;
  --dark-text: #011627;
  --muted: #3d4f5c;
  --card: #fffef9;
  --border: rgba(15, 26, 32, 0.12);
  --radius: 12px;
  --shadow: 0 8px 32px rgba(15, 26, 32, 0.08);
  --font: "DM Sans", Arial, Helvetica, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  background: var(--light-bg);
  color: var(--dark-text);
  line-height: 1.5;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--orange);
  color: #fff;
  padding: 8px 16px;
  z-index: 10000;
}

.skip-link:focus {
  left: 12px;
  top: 12px;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ----- Site chrome ----- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(253, 250, 246, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.site-header__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.site-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.02em;
}

.site-brand img {
  height: 44px;
  width: auto;
}

.badge-soon {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: var(--navy);
  color: var(--cream);
  padding: 4px 10px;
  border-radius: 999px;
  white-space: nowrap;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.site-nav a {
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--muted);
  transition: background 0.15s, color 0.15s;
}

.site-nav a:hover {
  background: rgba(76, 138, 155, 0.15);
  color: var(--navy);
}

.site-nav a.is-active {
  background: var(--navy);
  color: var(--cream);
}

/* ----- Hero ----- */
header.hero {
  background: linear-gradient(165deg, var(--navy) 0%, #1a2d38 100%);
  color: var(--cream);
  padding: 48px 20px 56px;
  text-align: center;
}

header.hero .hero__inner {
  max-width: 1000px;
  margin: 0 auto;
}

header.hero--compact {
  padding: 36px 20px 44px;
}

header.hero--compact h1 {
  margin-bottom: 12px;
}

header.hero .hero__sub {
  margin: 0 auto;
  max-width: min(36rem, 92vw);
  font-size: 1.05rem;
  line-height: 1.55;
  opacity: 0.92;
}

@media (min-width: 900px) {
  header.hero .hero__sub {
    max-width: 42rem;
  }
}

@media (min-width: 1280px) {
  header.hero .hero__sub {
    max-width: 48rem;
  }
}

header.hero h1 {
  margin: 0 0 16px;
  font-size: clamp(1.75rem, 4vw, 2.35rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

header.hero p {
  margin: 0 0 28px;
  font-size: 1.1rem;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.95;
}

header.hero .hero-logo {
  height: 140px;
  margin-bottom: 20px;
}

@media (min-width: 640px) {
  header.hero .hero-logo {
    height: 160px;
  }
}

.btn {
  background: var(--orange);
  color: #fff;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 700;
  display: inline-block;
  transition: transform 0.12s, box-shadow 0.12s;
  box-shadow: 0 4px 20px rgba(198, 82, 39, 0.35);
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(198, 82, 39, 0.45);
}

.btn--ghost {
  background: transparent;
  color: var(--cream);
  border: 2px solid rgba(245, 224, 183, 0.5);
  box-shadow: none;
  margin-left: 8px;
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.08);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  align-items: center;
}

/* ----- Sections ----- */
.section {
  padding: 52px 20px;
  max-width: 1000px;
  margin: 0 auto;
}

.section h2 {
  text-align: center;
  margin: 0 0 36px;
  font-size: clamp(1.5rem, 3vw, 1.85rem);
  color: var(--navy);
}

.section-lead {
  text-align: center;
  max-width: 620px;
  margin: -24px auto 40px;
  color: var(--muted);
  font-size: 1.05rem;
}

.steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 28px;
}

.step {
  flex: 1;
  min-width: 220px;
  max-width: 300px;
  text-align: center;
  background: var(--card);
  padding: 28px 22px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.step .icon {
  font-size: 2.75rem;
  margin-bottom: 8px;
}

.step h3 {
  margin: 0 0 8px;
  color: var(--navy);
}

.step p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
}

.columns {
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
  align-items: flex-start;
}

.col {
  flex: 1;
  min-width: 280px;
}

.features ul {
  list-style: none;
  padding: 0;
  margin: 0;
  line-height: 1.65;
}

.features li {
  position: relative;
  padding-left: 1.4em;
  margin-bottom: 0.65em;
  color: var(--muted);
}

.features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  background: var(--orange);
  border-radius: 2px;
}

.features h2 {
  text-align: left;
  margin-bottom: 1rem;
}

.waitlist-page {
  background: linear-gradient(165deg, #f8f6f1 0%, #eef3f5 45%, #fdfaf6 100%);
  min-height: 100vh;
}

.waitlist-page .site-header {
  background: rgba(255, 254, 249, 0.88);
}

/* ----- Intake / waitlist form (modern) ----- */
.waitlist form,
.intake-form {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 0;
}

.intake-layout {
  width: 100%;
  margin-inline: auto;
  max-width: 26rem;
  padding-top: 24px;
  padding-bottom: 56px;
}

@media (min-width: 480px) {
  .intake-layout {
    max-width: 30rem;
  }
}

@media (min-width: 640px) {
  .intake-layout {
    max-width: 36rem;
    padding-top: 28px;
    padding-bottom: 64px;
  }
}

@media (min-width: 900px) {
  .intake-layout {
    max-width: 44rem;
    padding-top: 32px;
    padding-bottom: 72px;
  }
}

@media (min-width: 1100px) {
  .intake-layout {
    max-width: 52rem;
  }
}

@media (min-width: 1280px) {
  .intake-layout {
    max-width: 58rem;
  }
}

.waitlist-page .section.intake-layout {
  padding-left: max(16px, env(safe-area-inset-left));
  padding-right: max(16px, env(safe-area-inset-right));
}

@media (min-width: 640px) {
  .waitlist-page .section.intake-layout {
    padding-left: 24px;
    padding-right: 24px;
  }
}

@media (min-width: 1024px) {
  .waitlist-page .section.intake-layout {
    padding-left: 32px;
    padding-right: 32px;
  }
}

.intake-shell {
  margin: 0 auto;
}

.intake-card {
  background: #fff;
  border-radius: 16px;
  border: 1px solid rgba(15, 26, 32, 0.06);
  box-shadow:
    0 1px 2px rgba(15, 26, 32, 0.04),
    0 24px 48px -12px rgba(15, 26, 32, 0.12);
  padding: clamp(20px, 4vw, 36px) clamp(18px, 4vw, 40px) clamp(28px, 4vw, 40px);
}

.intake-highlight {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 16px 18px;
  margin: 0 0 24px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(76, 138, 155, 0.14) 0%, rgba(198, 82, 39, 0.1) 100%);
  border: 1px solid rgba(76, 138, 155, 0.25);
}

.intake-highlight__badge {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--navy);
}

.intake-highlight__text {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.55;
  color: var(--dark-text);
}

.intake-highlight__text strong {
  color: var(--navy);
  font-weight: 700;
}

.intake-intro {
  text-align: left;
  margin: 0 0 28px;
  max-width: none;
  font-size: 0.98rem;
  line-height: 1.6;
}

.waitlist input,
.intake-form input[type="text"],
.intake-form input[type="email"],
.intake-form input[type="password"],
.intake-form input[type="tel"],
.intake-form input[type="number"],
.intake-form select,
.intake-form textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid rgba(15, 26, 32, 0.1);
  border-radius: 10px;
  font-size: 1rem;
  font-family: inherit;
  background: #faf9f7;
  color: var(--dark-text);
  transition: border-color 0.15s, background 0.15s, box-shadow 0.15s;
}

.intake-form select {
  appearance: none;
  padding-right: 44px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%233d4f5c' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-color: #faf9f7;
  cursor: pointer;
}

.intake-form input:hover,
.intake-form select:hover,
.intake-form textarea:hover {
  border-color: rgba(15, 26, 32, 0.16);
  background: #fff;
}

.intake-form input:focus,
.intake-form select:focus,
.intake-form textarea:focus {
  outline: none;
  border-color: var(--blue);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(76, 138, 155, 0.22);
}

.intake-form input::placeholder,
.intake-form textarea::placeholder {
  color: rgba(61, 79, 92, 0.5);
}

.intake-form textarea {
  min-height: 120px;
  resize: vertical;
  line-height: 1.5;
}

.waitlist button,
.intake-form .intake-submit {
  width: 100%;
  background: linear-gradient(180deg, #d65a2e 0%, var(--orange) 100%);
  color: #fff;
  border: none;
  padding: 16px 24px;
  border-radius: 12px;
  cursor: pointer;
  font-weight: 700;
  font-family: inherit;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  box-shadow: 0 4px 14px rgba(198, 82, 39, 0.35);
  transition: transform 0.12s, box-shadow 0.12s, filter 0.12s;
}

.waitlist button:hover,
.intake-form .intake-submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(198, 82, 39, 0.4);
  filter: brightness(1.03);
}

.intake-form .intake-submit:active {
  transform: translateY(0);
}

.intake-form label {
  display: block;
  font-weight: 600;
  font-size: 0.8125rem;
  color: var(--navy);
  margin-bottom: 8px;
  letter-spacing: 0.01em;
}

.intake-form .field-hint {
  font-weight: 400;
  font-size: 0.8125rem;
  color: var(--muted);
  margin: -4px 0 14px;
  line-height: 1.45;
}

.intake-form .form-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px 20px;
  margin-bottom: 4px;
}

.intake-form .form-field {
  margin-bottom: 0;
}

.intake-form .intake-field--full {
  margin-top: 4px;
}

.intake-fieldset {
  border: none;
  margin: 0 0 28px;
  padding: 0 0 28px;
  padding-inline: 0;
  border-bottom: 1px solid rgba(15, 26, 32, 0.07);
  background: transparent;
  min-inline-size: 0;
}

.intake-fieldset:last-of-type {
  border-bottom: none;
  margin-bottom: 8px;
  padding-bottom: 0;
}

.intake-fieldset legend {
  float: none;
  width: 100%;
  padding: 0;
  margin: 0 0 16px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  color: var(--blue);
}

.checkbox-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 10px;
  margin-top: 4px;
}

@supports selector(label:has(input:checked)) {
  .checkbox-grid label:has(input:checked) {
    border-color: rgba(198, 82, 39, 0.55);
    background: rgba(198, 82, 39, 0.06);
    box-shadow: 0 0 0 1px rgba(198, 82, 39, 0.12);
  }
}

.checkbox-grid label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-weight: 500;
  font-size: 0.9375rem;
  cursor: pointer;
  margin: 0;
  padding: 14px 16px;
  border: 1px solid rgba(15, 26, 32, 0.08);
  border-radius: 10px;
  background: #faf9f7;
  transition: border-color 0.15s, background 0.15s;
  line-height: 1.4;
  color: var(--dark-text);
}

.checkbox-grid label:hover {
  border-color: rgba(76, 138, 155, 0.35);
  background: #fff;
}

.checkbox-grid input {
  margin-top: 3px;
  flex-shrink: 0;
  width: 1.125rem;
  height: 1.125rem;
  accent-color: var(--orange);
  cursor: pointer;
}

.intake-form .consent-block {
  background: rgba(15, 26, 32, 0.04);
  border: 1px solid rgba(15, 26, 32, 0.08);
  border-radius: 12px;
  padding: 18px 18px;
  margin: 8px 0 24px;
}

.intake-form .consent-block label {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin: 0;
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.5;
  color: var(--dark-text);
  cursor: pointer;
}

.intake-form .consent-block strong {
  color: var(--navy);
  font-weight: 700;
}

.intake-form .consent-block input {
  margin-top: 4px;
  width: 1.125rem;
  height: 1.125rem;
  flex-shrink: 0;
  accent-color: var(--orange);
  cursor: pointer;
}

.intake-actions {
  margin-top: 8px;
}

.intake-actions__hint {
  margin: 12px 0 0;
  font-size: 0.8125rem;
  color: var(--muted);
  text-align: center;
  line-height: 1.45;
}

.waitlist-page .section--narrow {
  max-width: 720px;
}

.waitlist-page .intro {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 28px;
  color: var(--muted);
}

.form-footnote {
  font-size: 0.8125rem;
  color: var(--muted);
  margin-top: 20px;
  line-height: 1.55;
}

.form-footnote--error {
  color: #b71c1c;
  font-weight: 600;
  text-align: center;
}

.intake-details {
  margin-top: 24px;
  padding: 16px 18px;
  border-radius: 10px;
  background: rgba(15, 26, 32, 0.03);
  border: 1px solid rgba(15, 26, 32, 0.06);
  font-size: 0.8125rem;
  color: var(--muted);
}

.intake-details summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--navy);
  list-style: none;
}

.intake-details summary::-webkit-details-marker {
  display: none;
}

.intake-details summary::after {
  content: "";
  display: inline-block;
  width: 0.5em;
  height: 0.5em;
  margin-left: 0.35em;
  border-right: 2px solid var(--muted);
  border-bottom: 2px solid var(--muted);
  transform: rotate(45deg) translateY(-2px);
  transition: transform 0.15s;
}

.intake-details[open] summary::after {
  transform: rotate(225deg) translateY(-1px);
}

.intake-details p {
  margin: 12px 0 0;
  line-height: 1.5;
}

.intake-details code {
  font-size: 0.85em;
  background: rgba(76, 138, 155, 0.12);
  padding: 2px 6px;
  border-radius: 4px;
  color: var(--navy);
}

.promo-box {
  background: var(--blue);
  color: #fff;
  padding: 14px 16px;
  border-radius: var(--radius);
  font-weight: 600;
  text-align: center;
  margin-bottom: 16px;
  line-height: 1.5;
}

.faq h3 {
  margin: 28px 0 6px;
  color: var(--navy);
  font-size: 1.15rem;
}

.faq p {
  margin: 0;
  color: var(--muted);
}

.about p {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  line-height: 1.7;
  color: var(--muted);
}

/* ----- Blog listing ----- */
.blog-page {
  background:
    radial-gradient(ellipse 80% 50% at 50% -20%, rgba(76, 138, 155, 0.12), transparent 60%),
    var(--light-bg);
}

.blog-page .hero--blog .hero__eyebrow {
  display: inline-block;
  margin: 0 0 12px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(245, 224, 183, 0.14);
  border: 1px solid rgba(245, 224, 183, 0.22);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.blog-section {
  max-width: 820px;
}

.blog-categories {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.blog-category {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) + 4px);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: box-shadow 0.2s, border-color 0.2s;
}

.blog-category[open] {
  border-color: rgba(76, 138, 155, 0.28);
  box-shadow: 0 12px 40px rgba(15, 26, 32, 0.1);
}

.blog-category__summary {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  cursor: pointer;
  list-style: none;
  user-select: none;
}

.blog-category__summary::-webkit-details-marker {
  display: none;
}

.blog-category__icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(145deg, rgba(76, 138, 155, 0.18), rgba(76, 138, 155, 0.08));
  font-size: 1.25rem;
  line-height: 1;
}

.blog-category[open] .blog-category__icon {
  background: linear-gradient(145deg, rgba(198, 82, 39, 0.18), rgba(198, 82, 39, 0.08));
}

.blog-category__head {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.blog-category__title {
  font-size: 1.12rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.25;
}

.blog-category__count {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--muted);
}

.blog-category__chevron {
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--blue);
  border-bottom: 2px solid var(--blue);
  transform: rotate(45deg);
  transition: transform 0.2s, border-color 0.2s;
  margin-right: 4px;
}

.blog-category[open] .blog-category__chevron {
  transform: rotate(-135deg);
  margin-top: 6px;
  border-color: var(--orange);
}

.blog-category__summary:hover {
  background: rgba(76, 138, 155, 0.04);
}

.blog-category__posts {
  display: grid;
  gap: 10px;
  padding: 4px 16px 16px;
  border-top: 1px solid var(--border);
  background: rgba(253, 250, 246, 0.55);
}

@media (min-width: 720px) {
  .blog-category__posts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    padding: 16px 18px 18px;
  }
}

.blog-post-link {
  margin: 0;
}

.blog-post-link__anchor {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  height: 100%;
  padding: 16px;
  border-radius: var(--radius);
  background: var(--card);
  border: 1px solid var(--border);
  transition: transform 0.15s, box-shadow 0.15s, border-color 0.15s;
}

.blog-post-link__anchor:hover {
  transform: translateY(-2px);
  border-color: rgba(198, 82, 39, 0.28);
  box-shadow: 0 8px 24px rgba(15, 26, 32, 0.08);
}

.blog-post-link__text {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}

.blog-post-link__text strong {
  font-size: 0.98rem;
  line-height: 1.35;
  color: var(--navy);
}

.blog-post-link__text span {
  font-size: 0.88rem;
  line-height: 1.45;
  color: var(--muted);
}

.blog-post-link__arrow {
  flex-shrink: 0;
  margin-top: 2px;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--orange);
  opacity: 0;
  transform: translateX(-4px);
  transition: opacity 0.15s, transform 0.15s;
}

.blog-post-link__anchor:hover .blog-post-link__arrow {
  opacity: 1;
  transform: translateX(0);
}

.blog-post-link--draft .blog-post-link__anchor {
  opacity: 0.7;
  border-style: dashed;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.post-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  transition: transform 0.15s, box-shadow 0.15s;
}

.post-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(15, 26, 32, 0.12);
}

.post-card__meta {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--blue);
  font-weight: 700;
  margin-bottom: 8px;
}

.post-card h2 {
  text-align: left;
  margin: 0 0 12px;
  font-size: 1.25rem;
  line-height: 1.3;
}

.post-card h2 a {
  color: var(--navy);
}

.post-card h2 a:hover {
  color: var(--orange);
}

.post-card p {
  margin: 0 0 16px;
  flex: 1;
  color: var(--muted);
  font-size: 0.98rem;
}

.post-card .read-more {
  font-weight: 700;
  color: var(--orange);
}

/* ----- Blog article ----- */
.article-wrap {
  max-width: 720px;
  margin: 0 auto;
  padding: 32px 20px 60px;
}

.article-back {
  display: inline-block;
  margin-bottom: 24px;
  font-weight: 600;
  color: var(--blue);
}

.article-back:hover {
  text-decoration: underline;
}

article.post h1 {
  margin: 0 0 12px;
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  line-height: 1.2;
  color: var(--navy);
  letter-spacing: -0.02em;
}

.article-meta {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

article.post .prose {
  font-size: 1.05rem;
  color: var(--muted);
}

article.post .prose p {
  margin: 0 0 1.15em;
}

article.post .prose h2 {
  font-size: 1.35rem;
  color: var(--navy);
  margin: 1.75em 0 0.5em;
}

article.post .prose ul {
  margin: 0 0 1.15em;
  padding-left: 1.25em;
}

article.post .prose li {
  margin-bottom: 0.4em;
}

.placeholder-callout {
  background: rgba(76, 138, 155, 0.12);
  border-left: 4px solid var(--blue);
  padding: 14px 18px;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 0 0 1.5em;
  color: var(--dark-text);
}

.placeholder-callout strong {
  color: var(--navy);
}

.placeholder-callout--priority {
  background: rgba(198, 82, 39, 0.1);
  border-left-color: var(--orange);
}

.post-card--outline {
  border-style: dashed;
}

.post-card--outline .post-card__meta {
  color: var(--orange);
}

/* ----- Homepage partners ----- */
.partners-section {
  margin-top: 8px;
  padding: 40px 20px 44px;
  background: linear-gradient(180deg, rgba(245, 241, 232, 0.65) 0%, rgba(255, 255, 255, 0) 100%);
  border-top: 1px solid rgba(15, 26, 32, 0.08);
}

.partners-section__inner {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}

.partners-section h2 {
  margin-bottom: 8px;
}

.partners-section__lead {
  margin: 0 auto 28px;
  max-width: 540px;
}

.partners-grid {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px 16px;
  max-width: 920px;
}

.partners-grid__item {
  margin: 0;
}

.partners-card {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 88px;
  padding: 8px 10px;
  border-radius: 0;
  background: transparent;
  transition: transform 0.15s ease, opacity 0.15s ease;
}

.partners-card:hover,
.partners-card:focus-visible {
  transform: scale(1.03);
  opacity: 0.92;
}

.partners-card__logo {
  display: block;
  max-width: 100%;
  max-height: 84px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.partners-grid__item[data-partner-id='sk-construction-renovation'] .partners-card {
  overflow: visible;
}

.partners-card--text {
  text-align: center;
}

.partners-card__name {
  font-weight: 600;
  color: var(--navy);
  line-height: 1.3;
}

.partners-disclosure {
  margin: 22px auto 0;
  max-width: 640px;
  font-size: 0.82rem;
  color: var(--muted, #5a6a75);
  line-height: 1.5;
}

@media (min-width: 720px) {
  .partners-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 24px 18px;
    max-width: 980px;
  }

  .partners-card__logo {
    max-height: 92px;
  }
}

@media (max-width: 519px) {
  .partners-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .partners-grid__item:last-child {
    grid-column: 1 / -1;
    max-width: 220px;
    margin: 0 auto;
    width: 100%;
  }

  .partners-card__logo {
    max-height: 58px;
  }
}

/* ----- Footer ----- */
footer {
  background: var(--navy);
  color: var(--cream);
  text-align: center;
  padding: 28px 20px;
  font-size: 0.88rem;
}

footer a {
  color: var(--cream);
  margin: 0 8px;
}

footer .footer-instagram img {
  width: 34px;
  margin-top: 12px;
  vertical-align: middle;
}

/* ----- Modal ----- */
.thankyou-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.thankyou-overlay.is-open {
  display: flex;
}

.thankyou-box {
  background: #fff7e6;
  border-radius: var(--radius);
  max-width: 420px;
  width: 90%;
  padding: 24px 28px;
  text-align: center;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.35);
  border: 2px solid var(--navy);
}

.thankyou-box h2 {
  margin-top: 0;
  font-size: 1.35rem;
  color: var(--navy);
}

.thankyou-box p {
  margin: 12px 0 20px;
  color: #333;
  font-size: 0.95rem;
}

.thankyou-box button {
  background: var(--orange);
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 10px 26px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
}

.site-legal-entity {
  margin: 0 0 8px;
  font-size: 0.85rem;
  color: var(--muted, #5a6a75);
  line-height: 1.4;
}

@media (max-width: 520px) {
  body {
    overflow-x: hidden;
  }

  .site-header__inner,
  .hero__inner,
  .section {
    padding-left: 16px;
    padding-right: 16px;
  }

  .btn--ghost {
    margin-left: 0;
    width: 100%;
    text-align: center;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
    text-align: center;
  }

  .intake-actions .intake-submit,
  .intake-actions .btn {
    width: 100%;
  }
}
