@charset "UTF-8";
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: #1A1A1A;
  background: #FFFFFF;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

@media (min-width: 768px) {
  body {
    font-size: 1.0625rem;
  }
}
img, svg {
  max-width: 100%;
  height: auto;
  display: block;
}

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

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: #0A2540;
  color: #FFFFFF;
  padding: 0.5rem 1rem;
  z-index: 100;
  font-weight: 600;
}
.skip-link:focus {
  left: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.2;
  margin-top: 0;
  font-weight: 700;
  color: #1A1A1A;
}

h1 {
  font-size: clamp(1.75rem, 6vw, 3rem);
  margin-bottom: 1rem;
}

h2 {
  font-size: clamp(1.375rem, 4vw, 2.25rem);
  margin: 2rem 0 1rem;
}

h3 {
  font-size: clamp(1.1875rem, 3vw, 1.375rem);
  margin: 1.75rem 0 0.75rem;
}

h4 {
  font-size: 1.0625rem;
  margin: 1.5rem 0 0.5rem;
}

a {
  color: #0A2540;
  text-decoration: underline;
  text-underline-offset: 0.15em;
}
a:hover {
  color: #061830;
}
a:focus-visible {
  outline: 2px solid #0A2540;
  outline-offset: 2px;
}

p {
  margin: 0 0 1rem;
}

ul, ol {
  margin: 0 0 1rem;
  padding-left: 1.5rem;
}

li {
  margin-bottom: 0.25rem;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  font-size: 0.9375rem;
}
table th, table td {
  text-align: left;
  padding: 0.625rem 0.75rem;
  border-bottom: 1px solid #E2E8F0;
  vertical-align: top;
}
table th {
  background: #F8F9FB;
  font-weight: 600;
}

.post-content table,
.guide-content table,
.page-content table {
  display: block;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  white-space: nowrap;
}
@media (min-width: 768px) {
  .post-content table,
  .guide-content table,
  .page-content table {
    display: table;
    overflow-x: visible;
    white-space: normal;
  }
}

blockquote {
  margin: 1.5rem 0;
  padding: 1rem 1.25rem;
  border-left: 4px solid #0A2540;
  background: #F8F9FB;
  font-size: 0.9375rem;
}

code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  background: #F8F9FB;
  padding: 0.125rem 0.375rem;
  border-radius: 3px;
  font-size: 0.9em;
  word-break: break-word;
}

pre {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
pre code {
  display: block;
  padding: 1rem;
  line-height: 1.5;
  white-space: pre;
}

hr {
  border: 0;
  height: 1px;
  background: #E2E8F0;
  margin: 2rem 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 768px) {
  .container {
    padding: 0 1.5rem;
  }
}
@media (min-width: 1024px) {
  .container {
    padding: 0 2rem;
  }
}
.kicker {
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #0A2540;
  margin-bottom: 0.5rem;
}

.subtitle {
  font-size: 1.125rem;
  color: #4A5568;
  margin-top: 0.5rem;
  line-height: 1.4;
}

@media (min-width: 768px) {
  .subtitle {
    font-size: 1.25rem;
  }
}
.link-arrow {
  display: inline-flex;
  align-items: center;
  font-weight: 600;
  text-decoration: none;
  margin-top: 1.5rem;
}
.link-arrow::after {
  content: " →";
  margin-left: 0.25rem;
}

.btn {
  display: inline-block;
  padding: 0.875rem 1.5rem;
  font-weight: 600;
  font-size: 0.9375rem;
  text-decoration: none;
  border-radius: 4px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease;
  line-height: 1;
  min-height: 44px;
  text-align: center;
}
.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  min-height: 0;
}
.btn-primary {
  background: #0A2540;
  color: #FFFFFF;
  border-color: #0A2540;
}
.btn-primary:hover {
  background: #061830;
  border-color: #061830;
  color: #FFFFFF;
}
.btn-secondary {
  background: transparent;
  color: #0A2540;
  border-color: #0A2540;
}
.btn-secondary:hover {
  background: #0A2540;
  color: #FFFFFF;
}
.btn-primary-on-dark {
  background: #FFFFFF;
  color: #0A2540;
  border-color: #FFFFFF;
}
.btn-primary-on-dark:hover {
  background: transparent;
  color: #FFFFFF;
}

@media (min-width: 768px) {
  .btn {
    padding: 0.875rem 1.75rem;
    font-size: 1rem;
  }
}
.contact-hero {
  max-width: 720px;
  margin: 0 0 1.5rem;
}
.contact-hero .kicker {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.75rem;
  font-weight: 700;
  color: #B8924C;
  margin: 0 0 0.625rem;
}
.contact-hero h1 {
  font-size: clamp(1.625rem, 4.5vw, 2.25rem);
  margin: 0 0 0.75rem;
  line-height: 1.15;
}
.contact-hero .hero-subtitle {
  font-size: 1.0625rem;
  color: #4A5568;
  line-height: 1.55;
  margin: 0;
  max-width: 60ch;
}

@media (min-width: 768px) {
  .contact-hero {
    margin-bottom: 2rem;
  }
  .contact-hero .hero-subtitle {
    font-size: 1.125rem;
  }
}
.review-mode {
  max-width: 720px;
  margin: 0 0 1.5rem;
  border: 1px dashed #E2E8F0;
  border-radius: 6px;
  background: repeating-linear-gradient(135deg, transparent, transparent 8px, rgba(184, 146, 76, 0.05) 8px, rgba(184, 146, 76, 0.05) 16px);
  font-size: 0.8125rem;
  color: #4A5568;
  overflow: hidden;
}
.review-mode .review-mode__label {
  display: inline-block;
  padding: 0.25rem 0.5rem;
  background: #4A5568;
  color: #FFFFFF;
  font-size: 0.6875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
  margin: 0.625rem 0 0 0.625rem;
  border-radius: 3px;
  vertical-align: top;
}
.review-mode .review-mode__body {
  padding: 0.625rem 0.875rem 0.875rem;
  line-height: 1.5;
}
.review-mode .review-mode__body p {
  margin: 0 0 0.5rem;
}
.review-mode .review-mode__body p:last-child {
  margin-bottom: 0;
}
.review-mode .review-mode__body strong {
  color: #1A1A1A;
  font-weight: 600;
}
.review-mode .review-mode__nav a {
  margin: 0 0.625rem 0 0;
}
.review-mode .review-mode__nav a.current {
  font-weight: 700;
  color: #0A2540;
}
.review-mode .review-mode__nav a:not(.current) {
  color: #4A5568;
}

.intake-form {
  max-width: 720px;
  margin: 0 0 2.5rem;
}
.intake-form .honeypot-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.intake-form .form-section {
  padding: 0;
  margin: 0 0 2rem;
}
.intake-form .form-section:last-of-type {
  margin-bottom: 1.5rem;
}
.intake-form .form-section-heading {
  font-size: 0.6875rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 700;
  color: #0A2540;
  margin: 0 0 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #E2E8F0;
  position: relative;
}
.intake-form .form-section-heading::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 2.5rem;
  height: 2px;
  background: #B8924C;
}
.intake-form .form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.125rem;
  margin-bottom: 1.125rem;
}
.intake-form .form-row:last-child {
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .intake-form .form-row.cols-2 {
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
  }
}
.intake-form .form-field {
  display: flex;
  flex-direction: column;
}
.intake-form .form-field label {
  font-weight: 600;
  font-size: 0.9375rem;
  margin-bottom: 0.4375rem;
  color: #1A1A1A;
  line-height: 1.3;
}
.intake-form .form-field .required {
  color: #B8924C;
  font-weight: 700;
  margin-left: 0.125rem;
  font-size: 0.875em;
}
.intake-form .form-field .field-hint {
  font-size: 0.8125rem;
  color: #4A5568;
  margin-top: 0.375rem;
  line-height: 1.45;
  font-style: italic;
}
.intake-form .form-field input[type=text],
.intake-form .form-field input[type=email],
.intake-form .form-field input[type=tel],
.intake-form .form-field input[type=number],
.intake-form .form-field select,
.intake-form .form-field textarea {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 1rem;
  padding: 0.75rem 0.875rem;
  border: 1px solid #E2E8F0;
  border-radius: 4px;
  background: #FFFFFF;
  color: #1A1A1A;
  width: 100%;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  line-height: 1.4;
}
.intake-form .form-field input[type=text]::placeholder,
.intake-form .form-field input[type=email]::placeholder,
.intake-form .form-field input[type=tel]::placeholder,
.intake-form .form-field input[type=number]::placeholder,
.intake-form .form-field select::placeholder,
.intake-form .form-field textarea::placeholder {
  color: rgb(120.6179775281, 134.8314606742, 159.3820224719);
  font-style: italic;
}
.intake-form .form-field input[type=text]:hover,
.intake-form .form-field input[type=email]:hover,
.intake-form .form-field input[type=tel]:hover,
.intake-form .form-field input[type=number]:hover,
.intake-form .form-field select:hover,
.intake-form .form-field textarea:hover {
  border-color: rgb(199.1090909091, 210.6727272727, 226.0909090909);
}
.intake-form .form-field input[type=text]:focus,
.intake-form .form-field input[type=email]:focus,
.intake-form .form-field input[type=tel]:focus,
.intake-form .form-field input[type=number]:focus,
.intake-form .form-field select:focus,
.intake-form .form-field textarea:focus {
  outline: none;
  border-color: #0A2540;
  box-shadow: 0 0 0 3px rgba(10, 37, 64, 0.15);
}
.intake-form .form-field input[type=text].field-error,
.intake-form .form-field input[type=email].field-error,
.intake-form .form-field input[type=tel].field-error,
.intake-form .form-field input[type=number].field-error,
.intake-form .form-field select.field-error,
.intake-form .form-field textarea.field-error {
  border-color: #C8443A;
  background: #FFF8F8;
}
.intake-form .form-field input[type=text].field-error:focus,
.intake-form .form-field input[type=email].field-error:focus,
.intake-form .form-field input[type=tel].field-error:focus,
.intake-form .form-field input[type=number].field-error:focus,
.intake-form .form-field select.field-error:focus,
.intake-form .form-field textarea.field-error:focus {
  box-shadow: 0 0 0 3px rgba(200, 68, 58, 0.15);
}
.intake-form .form-field select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'><path fill='%230A2540' d='M3 4.5l3 3 3-3'/></svg>");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 12px 12px;
  padding-right: 2rem;
}
.intake-form .form-field textarea {
  min-height: 6.5rem;
  resize: vertical;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.55;
}
.intake-form .form-field .error-msg {
  display: none;
  color: #C8443A;
  font-size: 0.8125rem;
  margin-top: 0.375rem;
  font-weight: 500;
}
.intake-form .form-field .error-msg::before {
  content: "⚠ ";
  margin-right: 0.125rem;
}
.intake-form .form-field .error-msg.visible {
  display: block;
}
.intake-form .form-radio-group,
.intake-form .form-checkbox-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem 1.25rem;
  margin-top: 0.5rem;
}
.intake-form .form-radio-group label,
.intake-form .form-checkbox-group label {
  font-weight: 400;
  font-size: 0.9375rem;
  margin: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.4375rem;
  padding: 0.375rem 0.625rem;
  border: 1px solid #E2E8F0;
  border-radius: 4px;
  transition: border-color 0.15s ease, background 0.15s ease;
  background: #FFFFFF;
}
.intake-form .form-radio-group label:hover,
.intake-form .form-checkbox-group label:hover {
  border-color: #0A2540;
}
.intake-form .form-radio-group label:has(input:checked),
.intake-form .form-checkbox-group label:has(input:checked) {
  border-color: #0A2540;
  background: rgba(10, 37, 64, 0.04);
}
.intake-form .form-radio-group input[type=radio],
.intake-form .form-radio-group input[type=checkbox],
.intake-form .form-checkbox-group input[type=radio],
.intake-form .form-checkbox-group input[type=checkbox] {
  margin: 0;
  cursor: pointer;
  accent-color: #0A2540;
}
.intake-form .form-captcha {
  background: #F8F9FB;
  padding: 1rem 1.125rem 1.125rem;
  border-radius: 6px;
  border: 1px solid #E2E8F0;
  border-left: 3px solid #B8924C;
  margin: 1.75rem 0 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
}
.intake-form .form-captcha .captcha-label {
  font-weight: 600;
  font-size: 0.8125rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #4A5568;
  flex: 1 1 100%;
  margin: 0 0 0.125rem;
}
.intake-form .form-captcha .captcha-question {
  font-size: 1.0625rem;
  font-weight: 700;
  color: #0A2540;
  font-variant-numeric: tabular-nums;
}
.intake-form .form-captcha input {
  width: 4.5rem;
  padding: 0.5rem 0.625rem;
  font-size: 1rem;
  border: 1px solid #E2E8F0;
  border-radius: 4px;
  text-align: center;
  font-variant-numeric: tabular-nums;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.intake-form .form-captcha input:focus {
  outline: none;
  border-color: #0A2540;
  box-shadow: 0 0 0 3px rgba(10, 37, 64, 0.15);
}
.intake-form .form-captcha input.field-error {
  border-color: #C8443A;
  background: #FFF8F8;
}
.intake-form .form-captcha .error-msg {
  display: none;
  flex: 1 1 100%;
  color: #C8443A;
  font-size: 0.8125rem;
  font-weight: 500;
  margin-top: 0.125rem;
}
.intake-form .form-captcha .error-msg::before {
  content: "⚠ ";
}
.intake-form .form-captcha .error-msg.visible {
  display: block;
}
.intake-form .form-submit-row {
  margin-top: 1.75rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}
.intake-form .form-submit-row .btn {
  min-width: 11rem;
}
.intake-form .form-submit-row .form-status {
  font-size: 0.9375rem;
  font-weight: 500;
}
.intake-form .form-submit-row .form-status.status-error {
  color: #C8443A;
}
.intake-form .form-submit-row .form-status.status-success {
  color: #1F7A3A;
}
.intake-form .form-disclosure {
  font-size: 0.8125rem;
  color: #4A5568;
  line-height: 1.55;
  margin-top: 1.75rem;
  padding: 1rem 1.125rem;
  background: #F8F9FB;
  border-radius: 4px;
  border-left: 3px solid #E2E8F0;
}
.intake-form .form-disclosure p {
  margin: 0;
}
.intake-form .form-disclosure p + p {
  margin-top: 0.5rem;
}

.consultation-reassurance {
  max-width: 720px;
  margin: 2.5rem 0 0;
  padding-top: 1.5rem;
  border-top: 1px solid #E2E8F0;
}
.consultation-reassurance .reassurance-heading {
  font-size: 0.6875rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 700;
  color: #4A5568;
  margin: 0 0 1rem;
}
.consultation-reassurance .reassurance-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
.consultation-reassurance .reassurance-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}
.consultation-reassurance .reassurance-item .reassurance-icon {
  flex: 0 0 auto;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 50%;
  background: rgba(184, 146, 76, 0.12);
  color: #B8924C;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.875rem;
  font-variant-numeric: tabular-nums;
}
.consultation-reassurance .reassurance-item .reassurance-text {
  flex: 1 1 auto;
  font-size: 0.9375rem;
  line-height: 1.45;
  color: #1A1A1A;
}
.consultation-reassurance .reassurance-item .reassurance-text strong {
  color: #0A2540;
  font-weight: 600;
}
.consultation-reassurance .reassurance-item .reassurance-text .reassurance-sub {
  display: block;
  font-size: 0.8125rem;
  color: #4A5568;
  margin-top: 0.125rem;
}

@media (min-width: 768px) {
  .consultation-reassurance {
    margin-top: 3rem;
  }
  .consultation-reassurance .reassurance-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}
.site-header {
  border-bottom: 1px solid #E2E8F0;
  padding: 1rem 0;
  background: #FFFFFF;
  position: relative;
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.site-logo {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  line-height: 1;
  color: #0A2540;
}
.site-logo .logo-light {
  font-weight: 300;
  font-size: 0.6875rem;
  letter-spacing: 0.4em;
  color: #0A2540;
}
.site-logo .logo-bold {
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: 0.05em;
  color: #0A2540;
  margin-top: 0.1875rem;
}
.site-logo:hover {
  color: #0A2540;
}

@media (min-width: 768px) {
  .site-logo .logo-light {
    font-size: 0.75rem;
  }
  .site-logo .logo-bold {
    font-size: 1.5rem;
    margin-top: 0.25rem;
  }
}
.site-nav .nav-list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 1.25rem;
  align-items: center;
}
.site-nav .nav-list li {
  margin: 0;
}
.site-nav .nav-list a:not(.btn) {
  color: #1A1A1A;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9375rem;
  display: block;
  padding: 0.5rem 0;
}
.site-nav .nav-list a:not(.btn):hover, .site-nav .nav-list a:not(.btn)[aria-current=page] {
  color: #0A2540;
  text-decoration: underline;
  text-underline-offset: 0.4em;
}
.site-nav .nav-toggle {
  display: none;
  background: none;
  border: 1px solid #E2E8F0;
  padding: 0.625rem 0.75rem;
  cursor: pointer;
  border-radius: 4px;
  min-height: 44px;
  min-width: 44px;
}
.site-nav .nav-toggle .hamburger,
.site-nav .nav-toggle .hamburger::before,
.site-nav .nav-toggle .hamburger::after {
  content: "";
  display: block;
  width: 22px;
  height: 2px;
  background: #0A2540;
  transition: transform 0.2s ease;
}
.site-nav .nav-toggle .hamburger {
  position: relative;
}
.site-nav .nav-toggle .hamburger::before {
  position: absolute;
  top: -7px;
  left: 0;
}
.site-nav .nav-toggle .hamburger::after {
  position: absolute;
  top: 7px;
  left: 0;
}

@media (max-width: 767px) {
  .site-nav .nav-toggle {
    display: block;
  }
  .site-nav .nav-list {
    display: none;
    flex-direction: column;
    width: 100%;
    gap: 0.25rem;
    margin-top: 1rem;
    padding: 0.5rem 0;
    border-top: 1px solid #E2E8F0;
  }
  .site-nav .nav-list li {
    width: 100%;
  }
  .site-nav .nav-list li a:not(.btn) {
    padding: 0.75rem 0;
    font-size: 1rem;
  }
  .site-nav .nav-list li .btn {
    display: block;
    width: 100%;
    margin-top: 0.5rem;
  }
  .site-nav.is-open .nav-list {
    display: flex;
  }
}
.site-main {
  min-height: 50vh;
}

.hero {
  padding: 3rem 0 2.5rem;
  background: #F8F9FB;
}
.hero h1 {
  max-width: 850px;
  font-size: clamp(1.875rem, 6vw, 3.5rem);
}
.hero .hero-subtitle {
  max-width: 700px;
  font-size: 1.0625rem;
  color: #4A5568;
  margin-bottom: 1.75rem;
}
.hero .hero-cta {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.hero .hero-cta .btn {
  width: 100%;
}

@media (min-width: 768px) {
  .hero {
    padding: 5rem 0 4rem;
  }
  .hero .hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
  }
  .hero .hero-cta {
    gap: 1rem;
  }
  .hero .hero-cta .btn {
    width: auto;
  }
}
.featured-guides,
.services-overview,
.recent-blog {
  padding: 2.5rem 0;
}

.services-overview {
  background: #F8F9FB;
}

@media (min-width: 768px) {
  .featured-guides,
  .services-overview,
  .recent-blog {
    padding: 4rem 0;
  }
}
.featured-guides .guide-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: 1.5rem;
}
.featured-guides .guide-card {
  padding: 1.5rem;
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 6px;
}
.featured-guides .guide-card h3 {
  margin-top: 0;
}
.featured-guides .guide-card a {
  text-decoration: none;
}

@media (min-width: 768px) {
  .featured-guides .guide-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
  }
  .featured-guides .guide-card {
    padding: 1.75rem;
  }
}
.recent-blog .post-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: 1.5rem;
}
.recent-blog .post-card {
  padding: 1.25rem;
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 6px;
}
.recent-blog .post-card time {
  display: block;
  font-size: 0.8125rem;
  color: #4A5568;
  margin-bottom: 0.5rem;
}
.recent-blog .post-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.0625rem;
}
.recent-blog .post-card a {
  text-decoration: none;
}

@media (min-width: 768px) {
  .recent-blog .post-list {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
  }
  .recent-blog .post-card {
    padding: 1.5rem;
  }
}
.post,
.guide,
.page {
  max-width: 760px;
  margin: 0 auto;
  padding: 2rem 1rem 0;
}
.post .post-header,
.post .guide-header,
.post .page-header,
.guide .post-header,
.guide .guide-header,
.guide .page-header,
.page .post-header,
.page .guide-header,
.page .page-header {
  margin-bottom: 2rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid #E2E8F0;
}
.post .post-header .post-meta,
.post .post-header .guide-meta,
.post .guide-header .post-meta,
.post .guide-header .guide-meta,
.post .page-header .post-meta,
.post .page-header .guide-meta,
.guide .post-header .post-meta,
.guide .post-header .guide-meta,
.guide .guide-header .post-meta,
.guide .guide-header .guide-meta,
.guide .page-header .post-meta,
.guide .page-header .guide-meta,
.page .post-header .post-meta,
.page .post-header .guide-meta,
.page .guide-header .post-meta,
.page .guide-header .guide-meta,
.page .page-header .post-meta,
.page .page-header .guide-meta {
  color: #4A5568;
  font-size: 0.875rem;
  margin-top: 0.75rem;
}

@media (min-width: 768px) {
  .post,
  .guide,
  .page {
    padding: 3rem 1.5rem 0;
  }
  .post .post-header,
  .post .guide-header,
  .post .page-header,
  .guide .post-header,
  .guide .guide-header,
  .guide .page-header,
  .page .post-header,
  .page .guide-header,
  .page .page-header {
    margin-bottom: 2.5rem;
    padding-bottom: 1.5rem;
  }
  .post .post-header .post-meta,
  .post .post-header .guide-meta,
  .post .guide-header .post-meta,
  .post .guide-header .guide-meta,
  .post .page-header .post-meta,
  .post .page-header .guide-meta,
  .guide .post-header .post-meta,
  .guide .post-header .guide-meta,
  .guide .guide-header .post-meta,
  .guide .guide-header .guide-meta,
  .guide .page-header .post-meta,
  .guide .page-header .guide-meta,
  .page .post-header .post-meta,
  .page .post-header .guide-meta,
  .page .guide-header .post-meta,
  .page .guide-header .guide-meta,
  .page .page-header .post-meta,
  .page .page-header .guide-meta {
    font-size: 0.95rem;
  }
}
.cta-consultation {
  background: #0A2540;
  color: #FFFFFF;
  padding: 2.5rem 0;
  text-align: center;
  margin: 3rem 0 0;
}
.cta-consultation .cta-inner {
  max-width: 720px;
}
.cta-consultation h2 {
  color: #FFFFFF;
  margin-top: 0;
  font-size: clamp(1.375rem, 4vw, 2rem);
}
.cta-consultation p {
  max-width: 600px;
  margin: 0 auto 1.25rem;
  font-size: 1rem;
  opacity: 0.9;
}
.cta-consultation .btn {
  width: 100%;
  max-width: 320px;
}

@media (min-width: 768px) {
  .cta-consultation {
    padding: 3.5rem 0;
    margin-top: 4rem;
  }
  .cta-consultation p {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
  }
  .cta-consultation .btn {
    width: auto;
    max-width: none;
  }
}
.author-bio {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  text-align: center;
  max-width: 760px;
  margin: 2rem auto 3rem;
  padding: 1.5rem;
  background: #F8F9FB;
  border-radius: 6px;
}
.author-bio .author-bio-photo img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
}
.author-bio .author-bio-text h2 {
  margin-top: 0;
  font-size: 1.0625rem;
}
.author-bio .author-bio-text p {
  margin: 0 0 0.5rem;
  font-size: 0.9375rem;
}

@media (min-width: 768px) {
  .author-bio {
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
    gap: 1.5rem;
    padding: 2rem;
    margin: 3rem auto;
  }
  .author-bio .author-bio-photo img {
    width: 100px;
    height: 100px;
  }
  .author-bio .author-bio-text h2 {
    font-size: 1.125rem;
  }
  .author-bio .author-bio-text p {
    font-size: 0.95rem;
  }
}
.site-footer {
  background: #061830;
  color: #FFFFFF;
  padding: 2.5rem 0 1.5rem;
  margin-top: 0;
}
.site-footer a:not(.btn) {
  color: #FFFFFF;
  text-decoration: none;
  opacity: 0.85;
}
.site-footer a:not(.btn):hover {
  opacity: 1;
  text-decoration: underline;
}
.site-footer .footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}
.site-footer .footer-logo {
  font-weight: 800;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
  font-size: 0.9375rem;
}
.site-footer .footer-firm {
  margin-bottom: 0.5rem;
  opacity: 0.9;
}
.site-footer .footer-heading {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 0 0 0.875rem;
  color: #FFFFFF;
  opacity: 0.7;
}
.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.site-footer ul li {
  margin-bottom: 0.5rem;
}
.site-footer address {
  font-style: normal;
  opacity: 0.85;
  line-height: 1.6;
  font-size: 0.9375rem;
}
.site-footer .footer-cta p {
  opacity: 0.85;
  font-size: 0.9375rem;
  margin-bottom: 1rem;
}
.site-footer .footer-cta .btn {
  width: 100%;
  max-width: 320px;
}

@media (min-width: 768px) {
  .site-footer {
    padding: 3.5rem 0 2rem;
  }
  .site-footer .footer-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2.5rem;
    margin-bottom: 2.5rem;
  }
  .site-footer .footer-cta .btn {
    width: auto;
    max-width: none;
  }
}
.legal-footer {
  background: #061830;
  color: #FFFFFF;
  font-size: 0.75rem;
  line-height: 1.55;
  padding: 1.25rem 0 1.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}
.legal-footer p {
  margin: 0 0 0.5rem;
  opacity: 0.85;
  max-width: 900px;
}
.legal-footer p.legal-attorney {
  opacity: 0.95;
}
.legal-footer p.legal-copyright {
  margin-top: 1rem;
  opacity: 0.7;
}

@media (min-width: 768px) {
  .legal-footer {
    font-size: 0.8125rem;
    padding: 1.5rem 0 2rem;
  }
}
.page-not-found {
  text-align: center;
  padding: 4rem 1rem 3rem;
}
.page-not-found .kicker {
  font-size: 4rem;
  line-height: 1;
  margin-bottom: 1rem;
  opacity: 0.3;
}
.page-not-found ul {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

@media (min-width: 768px) {
  .page-not-found {
    padding: 6rem 1rem 4rem;
  }
  .page-not-found .kicker {
    font-size: 5rem;
  }
}
.guide-list,
.post-list-full {
  list-style: none;
  padding: 0;
  margin: 0;
}

.guide-list-item,
.post-list-item {
  padding: 1.5rem 0;
  border-bottom: 1px solid #E2E8F0;
}
.guide-list-item h2,
.post-list-item h2 {
  margin: 0.5rem 0;
  font-size: clamp(1.125rem, 3vw, 1.5rem);
}
.guide-list-item a,
.post-list-item a {
  text-decoration: none;
}
.guide-list-item time,
.post-list-item time {
  display: block;
  color: #4A5568;
  font-size: 0.8125rem;
}
.guide-list-item p,
.post-list-item p {
  color: #4A5568;
  margin-bottom: 0;
  font-size: 0.9375rem;
}

@media (min-width: 768px) {
  .guide-list-item,
  .post-list-item {
    padding: 2rem 0;
  }
  .guide-list-item p,
  .post-list-item p {
    font-size: 1rem;
  }
}
.intake-embed-placeholder {
  padding: 1.5rem;
  background: #F8F9FB;
  border: 1px dashed #E2E8F0;
  border-radius: 6px;
  margin: 1.5rem 0;
  text-align: center;
}
.intake-embed-placeholder .btn {
  width: 100%;
  max-width: 320px;
  margin-top: 0.5rem;
}

@media (min-width: 768px) {
  .intake-embed-placeholder {
    padding: 2rem;
  }
  .intake-embed-placeholder .btn {
    width: auto;
    max-width: none;
  }
}
.cost-calculator {
  background: #F8F9FB;
  border: 1px solid #E2E8F0;
  border-radius: 6px;
  padding: 1.5rem;
  margin: 2rem 0;
}
.cost-calculator__header {
  margin-bottom: 1.5rem;
}
.cost-calculator__header h2 {
  margin-top: 0;
  font-size: 1.25rem;
}
.cost-calculator__header p {
  color: #4A5568;
  margin-bottom: 0;
  font-size: 0.9375rem;
}
.cost-calculator__form fieldset {
  border: 1px solid #E2E8F0;
  border-radius: 4px;
  padding: 0.875rem 1rem;
  margin: 0 0 1rem;
  background: #FFFFFF;
}
.cost-calculator__form fieldset legend {
  font-weight: 600;
  font-size: 0.875rem;
  padding: 0 0.5rem;
  color: #0A2540;
}
.cost-calculator__form fieldset label {
  display: block;
  margin-bottom: 0.875rem;
}
.cost-calculator__form fieldset label > span {
  display: block;
  font-size: 0.8125rem;
  font-weight: 500;
  margin-bottom: 0.375rem;
  color: #1A1A1A;
}
.cost-calculator__form fieldset label select {
  width: 100%;
  padding: 0.625rem 0.75rem;
  font-size: 0.9375rem;
  border: 1px solid #E2E8F0;
  border-radius: 4px;
  background: #FFFFFF;
  font-family: inherit;
  color: #1A1A1A;
  min-height: 44px;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%230A2540' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  padding-right: 2rem;
}
.cost-calculator__form fieldset label select:focus {
  outline: 2px solid #0A2540;
  outline-offset: 1px;
}
.cost-calculator__form fieldset label:last-child {
  margin-bottom: 0;
}
.cost-calculator__results {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 4px;
  padding: 1.25rem;
  margin-top: 1.5rem;
}
.cost-calculator__results h3 {
  margin-top: 0;
  font-size: 1rem;
}
.cost-calculator__warnings {
  background: #FEF3E2;
  border-left: 4px solid #B8924C;
  padding: 0.875rem 1rem;
  margin: 1rem 0;
  border-radius: 4px;
  font-size: 0.9375rem;
}
.cost-calculator__warnings p {
  margin-bottom: 0.5rem;
}
.cost-calculator__warnings ul {
  margin: 0;
  padding-left: 1.25rem;
}
.cost-calculator__warnings li {
  margin-bottom: 0.375rem;
}
.cost-calculator__disclaimer {
  font-size: 0.75rem;
  color: #4A5568;
  font-style: italic;
  margin: 1rem 0 0.5rem;
}
.cost-calculator .cost-table {
  margin: 0.75rem 0;
  font-size: 0.875rem;
  display: table;
  overflow-x: visible;
  white-space: normal;
}
.cost-calculator .cost-table th, .cost-calculator .cost-table td {
  padding: 0.5rem 0.625rem;
}
.cost-calculator .cost-table tfoot tr:first-child {
  font-weight: 700;
  font-size: 1rem;
}
.cost-calculator .cost-table tfoot tr:first-child th, .cost-calculator .cost-table tfoot tr:first-child td {
  border-top: 2px solid #1A1A1A;
  padding-top: 0.625rem;
}
.cost-calculator .cost-table tfoot tr:nth-child(2) {
  font-size: 0.8125rem;
  color: #4A5568;
}
.cost-calculator .cost-row__note {
  opacity: 0.7;
  font-style: italic;
  font-size: 0.875em;
  margin-left: 0.25rem;
}
.cost-calculator .btn {
  width: 100%;
  max-width: 320px;
}

@media (min-width: 768px) {
  .cost-calculator {
    padding: 2rem;
  }
  .cost-calculator__header h2 {
    font-size: 1.5rem;
  }
  .cost-calculator__header p {
    font-size: 1rem;
  }
  .cost-calculator__form fieldset {
    padding: 1rem 1.25rem;
    margin-bottom: 1.25rem;
  }
  .cost-calculator__form fieldset legend {
    font-size: 0.9375rem;
  }
  .cost-calculator__form fieldset label {
    margin-bottom: 1rem;
  }
  .cost-calculator__form fieldset label > span {
    font-size: 0.875rem;
  }
  .cost-calculator__results {
    padding: 1.5rem;
  }
  .cost-calculator__results h3 {
    font-size: 1.125rem;
  }
  .cost-calculator .cost-table {
    font-size: 0.9375rem;
  }
  .cost-calculator .btn {
    width: auto;
  }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html {
    scroll-behavior: auto;
  }
}
@media print {
  .site-header, .nav-toggle, .site-footer, .cta-consultation,
  .cost-calculator__form, .skip-link {
    display: none !important;
  }
  body {
    font-size: 11pt;
    line-height: 1.4;
    color: black;
    background: white;
  }
  a {
    color: black;
    text-decoration: underline;
  }
  a[href^=http]::after,
  a[href^=https]::after {
    content: " (" attr(href) ")";
    font-size: 0.85em;
    word-break: break-all;
  }
  a[href^="/"]::after,
  a[href^="#"]::after {
    content: "";
  }
  table {
    page-break-inside: avoid;
  }
  h1, h2, h3 {
    page-break-after: avoid;
  }
  blockquote, pre {
    page-break-inside: avoid;
  }
  .post, .guide, .page {
    padding: 0;
    max-width: 100%;
  }
  .legal-footer {
    background: white;
    color: black;
    border-top: 1px solid black;
    page-break-before: always;
  }
  .legal-footer p {
    opacity: 1;
  }
}

/*# sourceMappingURL=main.css.map */