.brand-title,
h1,
h2,
h3,
.lawyer-initial,
.trust-block strong {
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(214, 180, 107, .38);
  border-radius: 10px;
  background: rgba(255, 255, 255, .05);
  color: #fff;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
}

.nav-toggle:focus-visible,
.chat-close:focus-visible,
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid #d6b46b;
  outline-offset: 3px;
}

.testimonials-layout > *,
.review-track,
.testimonial-slider {
  min-width: 0;
  max-width: 100%;
}

.principles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.principle-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 26px;
}

.principle-card h3 {
  margin-bottom: 10px;
  font-size: 23px;
  color: var(--navy);
}

.principle-card p {
  color: var(--muted);
  font-size: 14px;
}

.chat-head {
  position: relative;
  padding-right: 58px;
}

.chat-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 50%;
  background: rgba(255, 255, 255, .08);
  color: #fff;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}

.chat-final-row {
  margin-top: 14px;
}

.chat-whatsapp-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 16px;
  border-radius: 999px;
  background: #1f7a4f;
  color: #fff;
  font-weight: 800;
  font-size: 13px;
}

.form-result a {
  color: #8a641f;
  font-weight: 800;
  text-decoration: underline;
}

.article-meta {
  margin: 0 0 22px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
}

.privacy-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 1500;
  display: none;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 22px;
  width: min(760px, calc(100% - 40px));
  margin: 0 auto;
  padding: 18px 20px;
  border: 1px solid rgba(214, 180, 107, .38);
  border-radius: 14px;
  background: #0b1320;
  color: #fff;
  box-shadow: 0 22px 60px rgba(0, 0, 0, .3);
}

.privacy-banner.open {
  display: grid;
}

.privacy-banner strong {
  display: block;
  color: #d6b46b;
}

.privacy-banner p {
  margin-top: 3px;
  color: rgba(255, 255, 255, .74);
  font-size: 13px;
  line-height: 1.5;
}

.privacy-banner a {
  display: inline-block;
  margin-top: 5px;
  color: #fff;
  font-size: 12px;
  text-decoration: underline;
}

.privacy-actions {
  display: flex;
  gap: 8px;
}

.privacy-actions button {
  min-height: 40px;
  padding: 8px 14px;
  border: 1px solid rgba(214, 180, 107, .38);
  border-radius: 9px;
  background: transparent;
  color: #fff;
  font-weight: 700;
  cursor: pointer;
}

.privacy-actions .privacy-accept {
  background: #d6b46b;
  color: #101010;
}

.breadcrumb a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 980px) {
  .nav-inner {
    position: relative;
    align-items: center;
  }

  .nav-toggle {
    display: inline-flex;
    flex-direction: column;
    flex: 0 0 auto;
    margin-left: auto;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    right: 0;
    z-index: 20;
    padding: 12px;
    border: 1px solid rgba(214, 180, 107, .24);
    border-top: 0;
    border-radius: 0 0 14px 14px;
    background: #0b1320;
    box-shadow: 0 18px 48px rgba(0, 0, 0, .25);
  }

  .nav-links.open {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px 10px;
  }

  .nav-links a {
    display: block;
    padding: 12px 10px;
  }

  .nav-links a::after {
    display: none;
  }

  .nav-actions {
    margin-left: 0;
  }

  .principles-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .nav-inner {
    min-height: 70px;
    padding: 8px 0;
  }

  .nav-links.open {
    grid-template-columns: 1fr;
  }

  .chat-toggle {
    width: 58px;
    height: 58px;
  }

  .chat-toggle img {
    width: 36px;
    height: 36px;
  }

  .privacy-banner {
    left: 12px;
    right: 12px;
    bottom: 12px;
    grid-template-columns: 1fr;
    width: auto;
    padding: 16px;
  }

  .privacy-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}

/* Chat invitation */
.chat-invite {
  position: fixed;
  right: 104px;
  bottom: 28px;
  z-index: 1199;
  display: flex;
  width: min(244px, calc(100vw - 132px));
  min-height: 66px;
  padding: 12px 16px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  border: 1px solid rgba(184, 141, 56, .28);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 48px rgba(8, 17, 29, .18);
  color: #08111d;
  font: inherit;
  text-align: left;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(10px);
  transition: opacity .24s ease, visibility .24s ease, transform .24s ease, border-color .2s ease, box-shadow .2s ease;
}

.chat-invite::after {
  position: absolute;
  top: 50%;
  right: -8px;
  width: 14px;
  height: 14px;
  border-top: 1px solid rgba(184, 141, 56, .28);
  border-right: 1px solid rgba(184, 141, 56, .28);
  background: #fff;
  content: '';
  transform: translateY(-50%) rotate(45deg);
}

.chat-invite.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(0);
}

.chat-invite:hover,
.chat-invite:focus-visible {
  border-color: #b88d38;
  box-shadow: 0 22px 54px rgba(8, 17, 29, .24);
  outline: none;
  transform: translateY(-2px);
}

.chat-invite strong,
.chat-invite span {
  display: block;
  max-width: 100%;
  overflow-wrap: anywhere;
}

.chat-invite strong {
  font-size: 13px;
  font-weight: 800;
  line-height: 1.35;
}

.chat-invite span {
  margin-top: 3px;
  color: #8b6b2f;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.35;
}

@media (max-width: 640px) {
  .chat-invite {
    right: 84px;
    bottom: 82px;
    width: min(218px, calc(100vw - 104px));
    min-height: 60px;
    padding: 10px 13px;
  }

  .chat-invite strong {
    font-size: 12px;
  }

  .chat-invite span {
    font-size: 10.5px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .chat-invite {
    transition: none;
  }
}

/* Final homepage refinement */
.home-page .section {
  padding: 84px 0;
}

.home-page .hero h1 {
  font-size: 72px;
  letter-spacing: 0;
}

.home-page .section h2 {
  font-size: 48px;
  letter-spacing: 0;
}

.home-page .service-card h3,
.home-page .faq-q,
.home-page .review-card strong {
  letter-spacing: 0;
}

.home-page .editorial-services .service-card {
  display: flex;
  min-height: 220px;
  padding: 30px;
  flex-direction: column;
}

.home-page .editorial-services .service-card p {
  margin-bottom: auto;
}

.home-page .case-paths-compact {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.home-page .case-paths-compact .case-path {
  display: flex;
  min-height: 230px;
  padding: 24px;
  flex-direction: column;
}

.home-page .case-paths-compact .case-path p {
  margin-bottom: auto;
}

.home-page .case-paths-compact .case-path button {
  align-self: flex-start;
}

.home-page .process-section {
  padding: 68px 0;
}

.home-page .process-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  max-width: 980px;
  margin: 0 auto;
}

.home-page .process-card {
  min-height: 190px !important;
}

.home-page .lawyer-visual {
  display: flex;
  min-height: 470px;
  padding: 46px 30px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.lawyer-monogram {
  position: relative;
  display: grid;
  width: 190px;
  height: 190px;
  place-items: center;
  border: 1px solid rgba(224, 189, 114, .58);
  border-radius: 50%;
  color: #e0bd72;
}

.lawyer-monogram::before,
.lawyer-monogram::after {
  position: absolute;
  content: "";
  border: 1px solid rgba(224, 189, 114, .18);
  border-radius: 50%;
  inset: 9px;
}

.lawyer-monogram::after {
  border-style: dotted;
  inset: -10px;
}

.lawyer-monogram span {
  font-family: 'Playfair Display', serif;
  font-size: 58px;
  line-height: 1;
}

.lawyer-monogram small {
  position: absolute;
  bottom: 40px;
  color: rgba(255, 255, 255, .58);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.monogram-line {
  width: 88px;
  height: 1px;
  margin: 36px 0 16px;
  background: #e0bd72;
}

.monogram-caption {
  color: rgba(255, 255, 255, .68);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .1em;
  text-align: center;
  text-transform: uppercase;
}

.home-page .profile-intro {
  color: #263348;
  font-size: 18px;
  line-height: 1.75;
}

.profile-signature {
  display: flex;
  margin-top: 30px;
  align-items: center;
  gap: 16px;
  color: #8d6a28;
  font-family: 'Playfair Display', serif;
}

.profile-signature span {
  width: 70px;
  height: 1px;
  background: #b88d38;
}

.home-page .editorial-articles .blog-card {
  display: flex;
  min-height: 280px;
  flex-direction: column;
}

.home-page .editorial-articles .mini-cta {
  margin-top: auto;
}

.home-page .faq-container {
  max-width: 900px;
}

.home-page .contact-premium {
  padding: 96px 0 !important;
  background: #08111d;
}

.home-page .contact-premium .contact-wrap {
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: 46px;
}

.contact-assurances {
  display: grid;
  margin: 28px 0 32px;
}

.contact-assurances > div {
  display: grid;
  padding: 15px 0;
  grid-template-columns: 34px 1fr;
  gap: 14px;
  border-top: 1px solid rgba(255, 255, 255, .1);
}

.contact-assurances > div:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.contact-assurances > div > span {
  color: #e0bd72;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .1em;
}

.contact-assurances p,
.contact-assurances strong,
.contact-assurances small {
  display: block;
  margin: 0;
}

.contact-assurances strong {
  color: #fff;
  font-size: 14px;
}

.contact-assurances small {
  margin-top: 4px;
  color: rgba(255, 255, 255, .56);
  font-size: 12px;
  line-height: 1.55;
}

.home-page .contact-cards-premium {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.home-page .contact-cards-premium .contact-card {
  min-width: 0;
  min-height: 82px;
  padding: 14px;
}

.home-page .contact-cards-premium .contact-card > span:last-child {
  min-width: 0;
}

.home-page .contact-cards-premium .contact-card > span:last-child span {
  overflow-wrap: anywhere;
}

.contact-social-link {
  display: inline-flex;
  margin-top: 18px;
  color: #e0bd72;
  font-size: 13px;
  font-weight: 800;
}

.home-page .premium-form {
  position: relative;
  overflow: hidden;
  padding: 40px;
  border-radius: 26px;
}

.home-page .premium-form::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  content: "";
  background: #b88d38;
}

.form-kicker {
  margin-bottom: 10px;
  color: #9a762f;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.home-page .premium-form > p {
  margin-top: 8px;
  color: #687386;
  font-size: 13px;
  line-height: 1.65;
}

.home-page .premium-form .form-grid {
  margin-top: 24px;
  gap: 16px;
}

.home-page .premium-form .field input,
.home-page .premium-form .field select,
.home-page .premium-form .field textarea {
  min-height: 50px;
  padding: 14px 16px;
  border-radius: 12px;
}

.home-page .premium-form .field textarea {
  min-height: 112px;
}

.home-page .premium-submit {
  width: 100%;
  min-height: 54px;
  margin-top: 8px;
  font-size: 15px;
}

@media (max-width: 980px) {
  .home-page .hero h1 {
    font-size: 56px;
  }

  .home-page .section h2 {
    font-size: 42px;
  }

  .home-page .case-paths-compact {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-page .contact-premium .contact-wrap {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .home-page .section {
    padding: 60px 0;
  }

  .home-page .hero h1 {
    font-size: 40px;
  }

  .home-page .section h2 {
    font-size: 34px;
  }

  .home-page .case-paths-compact,
  .home-page .process-grid,
  .home-page .contact-cards-premium {
    grid-template-columns: 1fr !important;
  }

  .home-page .case-paths-compact .case-path,
  .home-page .process-card {
    min-height: unset !important;
  }

  .home-page .lawyer-visual {
    min-height: 370px;
  }

  .lawyer-monogram {
    width: 150px;
    height: 150px;
  }

  .lawyer-monogram span {
    font-size: 46px;
  }

  .lawyer-monogram small {
    bottom: 30px;
  }

  .home-page .premium-form {
    padding: 28px 22px;
  }
}

/* Premium editorial pass */
.home-page .about-editorial-grid,
.home-page .application-shell,
.home-page .intake-layout {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr);
  gap: 72px;
  align-items: start;
}

.home-page .about-editorial-grid .section-head,
.home-page .intake-layout .section-head {
  margin-bottom: 0;
}

.home-page .about-copy {
  max-width: 700px;
  padding-top: 22px;
}

.home-page .about-copy > p {
  color: #566176;
  font-size: 17px;
  line-height: 1.8;
}

.home-page .about-copy > p + p {
  margin-top: 16px;
}

.home-page .about-principles {
  display: flex;
  margin-top: 30px;
  flex-wrap: wrap;
  gap: 10px 24px;
}

.home-page .about-principles span {
  padding-bottom: 7px;
  border-bottom: 1px solid #b88d38;
  color: #1c283a;
  font-size: 13px;
  font-weight: 800;
}

.home-page .application-shell {
  align-items: center;
}

.home-page .application-copy h2 {
  max-width: 620px;
}

.home-page .application-copy > p:not(.eyebrow) {
  max-width: 650px;
  margin-top: 20px;
  color: #5d687a;
  font-size: 16px;
  line-height: 1.75;
}

.home-page .application-actions {
  display: flex;
  margin-top: 30px;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
}

.home-page .application-actions > a {
  padding: 10px 0;
  border-bottom: 1px solid #b88d38;
  color: #162235;
  font-size: 13px;
  font-weight: 800;
}

.home-page .application-points {
  border-top: 1px solid rgba(11, 19, 32, .14);
}

.home-page .application-points > div {
  display: grid;
  padding: 24px 0;
  grid-template-columns: 130px 1fr;
  gap: 20px;
  border-bottom: 1px solid rgba(11, 19, 32, .14);
}

.home-page .application-points strong {
  color: #172235;
  font-family: 'Playfair Display', serif;
  font-size: 22px;
}

.home-page .application-points span {
  color: #6b7587;
  font-size: 14px;
  line-height: 1.65;
}

.home-page .services-editorial .editorial-services {
  gap: 0;
}

.home-page .services-editorial .service-card {
  min-height: 195px;
  padding: 30px 26px 28px 0;
  border: 0;
  border-top: 1px solid rgba(224, 189, 114, .24);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.home-page .services-editorial .service-card::before {
  display: none;
}

.home-page .services-editorial .service-card:hover {
  border-color: #e0bd72;
  background: transparent;
  box-shadow: none;
  transform: translateY(-3px);
}

.home-page .services-editorial .service-card h3 {
  max-width: 280px;
  margin: 0 0 12px;
  font-size: 27px;
}

.home-page .services-editorial .service-card p {
  font-size: 13px;
}

.home-page .services-editorial .mini-cta b,
.home-page .editorial-articles .mini-cta b {
  margin-left: 8px;
  transition: transform .2s ease;
}

.home-page .services-editorial .service-card:hover .mini-cta b,
.home-page .editorial-articles .blog-card:hover .mini-cta b {
  transform: translateX(4px);
}

.home-page .intake-list {
  border-top: 1px solid rgba(11, 19, 32, .16);
}

.home-page .intake-option {
  display: flex;
  width: 100%;
  min-height: 104px;
  padding: 22px 4px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border: 0;
  border-bottom: 1px solid rgba(11, 19, 32, .16);
  border-radius: 0;
  background: transparent;
  color: #111d2f;
  cursor: pointer;
  text-align: left;
  transition: padding .2s ease, color .2s ease, border-color .2s ease;
}

.home-page .intake-option:hover {
  padding-right: 12px;
  padding-left: 12px;
  border-color: #b88d38;
  color: #8d6a28;
}

.home-page .intake-option small,
.home-page .intake-option strong {
  display: block;
}

.home-page .intake-option small {
  margin-bottom: 7px;
  color: #9a762f;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.home-page .intake-option strong {
  font-family: 'Playfair Display', serif;
  font-size: 25px;
}

.home-page .intake-option > b {
  font-size: 24px;
  font-weight: 400;
}

.home-page .refined-profile {
  border-radius: 8px;
}

.home-page .profile-meta {
  display: flex;
  margin: 14px 0 24px;
  gap: 12px 24px;
  flex-wrap: wrap;
  color: #8d6a28;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.home-page .profile-meta span + span {
  position: relative;
}

.home-page .profile-meta span + span::before {
  position: absolute;
  top: 50%;
  left: -14px;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #b88d38;
  content: "";
}

.home-page .editorial-articles {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr) !important;
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 1px !important;
  overflow: hidden;
  border: 1px solid #e0ddd5;
  border-radius: 8px;
  background: #e0ddd5;
}

.home-page .editorial-articles .blog-card {
  min-height: 0;
  padding: 32px;
  border: 0;
  border-radius: 0;
  background: #fff;
  box-shadow: none;
}

.home-page .editorial-articles .blog-card:first-child {
  padding: 48px;
  grid-row: 1 / 3;
}

.home-page .editorial-articles .blog-card::before {
  display: none;
}

.home-page .editorial-articles .blog-card:hover {
  background: #fffaf1;
  box-shadow: none;
  transform: none;
}

.home-page .editorial-articles .blog-card:first-child h3 {
  max-width: 520px;
  font-size: 38px;
}

.home-page .editorial-articles .blog-card:first-child p {
  max-width: 520px;
  font-size: 16px;
}

.home-page .editorial-articles .blog-card:not(:first-child) h3 {
  font-size: 24px;
}

.home-page .refined-faq {
  gap: 0;
  border-top: 1px solid rgba(11, 19, 32, .16);
}

.home-page .refined-faq .faq-item {
  border: 0;
  border-bottom: 1px solid rgba(11, 19, 32, .16);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.home-page .refined-faq .faq-q {
  padding: 24px 0;
  background: transparent;
  font-size: 17px;
}

.home-page .refined-faq .faq-q > span {
  display: grid;
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  place-items: center;
  border: 1px solid rgba(184, 141, 56, .35);
  border-radius: 50%;
  font-size: 20px;
  font-weight: 400;
  transition: transform .2s ease, background .2s ease;
}

.home-page .refined-faq .faq-item.open .faq-q > span {
  background: rgba(184, 141, 56, .1);
  transform: rotate(45deg);
}

.home-page .refined-faq .faq-a {
  max-width: 760px;
  padding: 0 50px 26px 0;
  line-height: 1.75;
}

.home-page .refined-contact .contact-wrap {
  grid-template-columns: minmax(0, .86fr) minmax(0, 1.14fr);
  gap: 64px;
  align-items: start;
}

.home-page .contact-standards {
  display: flex;
  margin: 28px 0 32px;
  flex-wrap: wrap;
  gap: 10px 22px;
}

.home-page .contact-standards span {
  padding-bottom: 7px;
  border-bottom: 1px solid rgba(224, 189, 114, .48);
  color: rgba(255, 255, 255, .78);
  font-size: 12px;
  font-weight: 800;
}

.home-page .contact-methods {
  border-top: 1px solid rgba(255, 255, 255, .13);
}

.home-page .contact-methods > a {
  display: grid;
  min-width: 0;
  padding: 16px 0;
  grid-template-columns: 42px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, .13);
  color: #fff;
  transition: padding .2s ease, border-color .2s ease;
}

.home-page .contact-methods > a:hover {
  padding-left: 8px;
  border-color: rgba(224, 189, 114, .66);
}

.home-page .contact-methods .contact-icon {
  width: 40px;
  height: 40px;
  border-radius: 6px;
}

.home-page .contact-methods small,
.home-page .contact-methods strong {
  display: block;
  overflow-wrap: anywhere;
}

.home-page .contact-methods small {
  margin-bottom: 3px;
  color: #e0bd72;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.home-page .contact-methods strong {
  font-size: 14px;
}

.home-page .contact-region {
  display: grid;
  margin-top: 22px;
  grid-template-columns: auto 1fr;
  gap: 4px 16px;
  font-size: 13px;
}

.home-page .contact-region > span {
  color: rgba(255, 255, 255, .5);
}

.home-page .contact-region > strong {
  color: #fff;
}

.home-page .contact-region > a {
  grid-column: 2;
  color: #e0bd72;
}

.home-page .refined-contact .premium-form {
  padding: 48px;
  border: 1px solid rgba(224, 189, 114, .35);
  border-radius: 8px;
  box-shadow: 0 32px 90px rgba(0, 0, 0, .28);
}

.home-page .refined-contact .premium-form h3 {
  font-size: 36px;
}

.home-page .refined-contact .premium-form::before {
  height: 2px;
}

.home-page .refined-contact .field input,
.home-page .refined-contact .field select,
.home-page .refined-contact .field textarea {
  border-color: #d9d6ce;
  border-radius: 6px;
  background: #fafafa;
  transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
}

.home-page .refined-contact .field input:hover,
.home-page .refined-contact .field select:hover,
.home-page .refined-contact .field textarea:hover {
  border-color: #b9b3a6;
  background: #fff;
}

.home-page .refined-contact .premium-submit {
  border-radius: 5px;
  box-shadow: 0 12px 30px rgba(184, 141, 56, .24);
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.home-page .refined-contact .premium-submit:hover {
  box-shadow: 0 16px 38px rgba(184, 141, 56, .32);
  transform: translateY(-2px);
}

.home-page .btn:focus-visible,
.home-page button:focus-visible,
.home-page a:focus-visible,
.home-page input:focus-visible,
.home-page select:focus-visible,
.home-page textarea:focus-visible {
  outline: 2px solid #d6b46b;
  outline-offset: 3px;
}

/* Publication and detail pages */
.detail-hero {
  padding: 96px 0 72px;
}

.detail-hero h1 {
  max-width: 920px;
  font-size: 58px;
  letter-spacing: 0;
}

.detail-hero p {
  max-width: 720px;
  font-size: 17px;
  line-height: 1.7;
}

.detail-layout {
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 56px;
}

.detail-content {
  max-width: 820px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.detail-content .article-meta {
  margin: 12px 0 36px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(11, 19, 32, .14);
}

.detail-content h2 {
  margin: 44px 0 16px;
  font-size: 32px;
  letter-spacing: 0;
}

.detail-content p,
.detail-content li {
  color: #4f5b6e;
  font-size: 16px;
  line-height: 1.85;
}

.detail-content li + li {
  margin-top: 8px;
}

.detail-content .notice {
  margin: 34px 0;
  padding: 22px 24px;
  border-radius: 0;
  background: #f4efe5;
  line-height: 1.7;
}

.detail-layout .side-card {
  top: 112px;
  padding: 28px;
  border: 1px solid rgba(224, 189, 114, .28);
  border-radius: 8px;
  background: #0b1421;
  color: #fff;
  box-shadow: 0 22px 56px rgba(8, 17, 29, .16);
}

.detail-layout .side-card h3 {
  color: #fff;
}

.detail-layout .side-card p {
  color: rgba(255, 255, 255, .66);
  line-height: 1.7;
}

.article-grid {
  gap: 1px;
  overflow: hidden;
  border: 1px solid #e0ddd5;
  border-radius: 8px;
  background: #e0ddd5;
}

.article-grid .blog-card {
  min-height: 300px;
  border: 0;
  border-radius: 0;
  background: #fff;
  box-shadow: none;
}

.article-grid .blog-card::before {
  display: none;
}

.article-grid .blog-card:hover {
  background: #fffaf1;
  box-shadow: none;
  transform: none;
}

.hero h1,
.section h2,
.service-card h3,
.faq-q,
.review-card strong,
.detail-hero h1 {
  letter-spacing: 0 !important;
}

@media (max-width: 980px) {
  .home-page .about-editorial-grid,
  .home-page .application-shell,
  .home-page .intake-layout,
  .home-page .refined-contact .contact-wrap,
  .detail-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .home-page .editorial-articles {
    grid-template-columns: 1fr !important;
    grid-template-rows: auto;
  }

  .home-page .editorial-articles .blog-card:first-child {
    grid-row: auto;
  }

  .detail-layout .side-card {
    position: static;
  }
}

@media (max-width: 640px) {
  .home-page .about-editorial-grid,
  .home-page .application-shell,
  .home-page .intake-layout {
    gap: 30px;
  }

  .home-page .application-points > div {
    padding: 20px 0;
    grid-template-columns: 90px 1fr;
  }

  .home-page .application-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .home-page .services-editorial .service-card {
    min-height: 165px;
    padding-right: 0;
  }

  .home-page .intake-option {
    min-height: 90px;
  }

  .home-page .editorial-articles .blog-card,
  .home-page .editorial-articles .blog-card:first-child {
    padding: 28px 24px;
  }

  .home-page .editorial-articles .blog-card:first-child h3 {
    font-size: 30px;
  }

  .home-page .refined-contact .premium-form {
    padding: 30px 22px;
  }

  .home-page .refined-contact .premium-form h3 {
    font-size: 30px;
  }

  .detail-hero {
    padding: 76px 0 54px;
  }

  .detail-hero h1 {
    font-size: 40px;
  }

  .detail-content h2 {
    font-size: 28px;
  }
}

/* Conversion and consistency pass */
.hero-secondary-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.hero-secondary-actions a {
  padding: 10px 0 8px;
  border-bottom: 1px solid rgba(224, 189, 114, .52);
  color: rgba(255, 255, 255, .78);
  font-size: 13px;
  font-weight: 800;
  transition: color .18s ease, border-color .18s ease;
}

.hero-secondary-actions a:hover {
  border-color: #e0bd72;
  color: #fff;
}

.home-page .application-flow > div {
  grid-template-columns: 170px 1fr;
}

.home-page .application-flow strong {
  font-size: 20px;
}

.home-page .profile-trustline {
  display: grid;
  margin: 26px 0 8px;
  border-top: 1px solid rgba(11, 19, 32, .13);
}

.home-page .profile-trustline span {
  padding: 11px 0;
  border-bottom: 1px solid rgba(11, 19, 32, .13);
  color: #48556a;
  font-size: 12px;
  font-weight: 800;
}

.home-page .refined-contact .field label > span {
  margin-left: 6px;
  color: #9a948a;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
}

.article-grid .mini-cta b {
  display: inline-block;
  margin-left: 8px;
  transition: transform .2s ease;
}

.article-grid .blog-card:hover .mini-cta b {
  transform: translateX(4px);
}

.mobile-contact-bar {
  display: none;
}

@media (max-width: 640px) {
  body {
    padding-bottom: 62px;
  }

  .hero-secondary-actions {
    justify-content: center;
  }

  .home-page .application-flow > div {
    grid-template-columns: 118px 1fr;
  }

  .mobile-contact-bar {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 70;
    display: grid;
    height: 62px;
    padding: 7px 12px;
    grid-template-columns: .72fr 1.28fr;
    gap: 8px;
    border-top: 1px solid rgba(224, 189, 114, .32);
    background: #08111d;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, .2);
  }

  .mobile-contact-bar a,
  .mobile-contact-bar button {
    display: grid;
    min-width: 0;
    place-items: center;
    border: 1px solid rgba(224, 189, 114, .34);
    border-radius: 5px;
    background: transparent;
    color: #fff;
    font: inherit;
    font-size: 12px;
    font-weight: 900;
    cursor: pointer;
  }

  .mobile-contact-bar button {
    border-color: #d6b46b;
    background: #d6b46b;
    color: #08111d;
  }

  .chat-toggle {
    bottom: 76px !important;
  }

  .chat-toggle[aria-expanded="true"] {
    opacity: 0;
    pointer-events: none;
  }

  .chat-window {
    bottom: 76px !important;
    height: min(620px, calc(100vh - 98px)) !important;
  }

  .privacy-banner {
    bottom: 74px;
  }
}

/* Final trust, testimonial and location layer */
.home-page .profile-official-line {
  margin: 26px 0 6px;
  padding: 18px 0;
  border-top: 1px solid rgba(11, 19, 32, .14);
  border-bottom: 1px solid rgba(11, 19, 32, .14);
  color: #263348;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.7;
}

.home-page .testimonial-section {
  padding: 108px 0;
  background: #fff;
}

.home-page .testimonial-editorial {
  display: grid;
  grid-template-columns: minmax(0, .72fr) minmax(0, 1.28fr);
  gap: 72px;
  align-items: center;
}

.home-page .testimonial-editorial .section-head {
  margin-bottom: 0;
}

.home-page .premium-testimonial {
  position: relative;
  overflow: hidden;
  margin-top: 0;
  border: 1px solid #ded9cf;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 28px 70px rgba(8, 17, 29, .09);
}

.home-page .premium-testimonial .review-quote {
  position: absolute;
  top: 20px;
  left: 52px;
  z-index: 2;
  color: rgba(184, 141, 56, .2);
  font-family: 'Playfair Display', serif;
  font-size: 112px;
  line-height: 1;
  pointer-events: none;
}

.home-page .premium-testimonial .review-track {
  display: flex;
  transition: transform .38s ease;
}

.home-page .premium-testimonial .review-slide {
  display: flex;
  min-width: 100%;
  min-height: 360px;
  padding: 104px 68px 52px;
  flex-direction: column;
  justify-content: center;
  background: #fff;
}

.home-page .premium-testimonial .review-slide::after {
  display: none;
}

.home-page .premium-testimonial .review-slide p {
  max-width: 700px;
  color: #233047;
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  line-height: 1.65;
}

.home-page .premium-testimonial .review-person {
  margin-top: 30px;
  color: #8d6a28;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
}

.home-page .premium-testimonial .slider-actions {
  display: flex;
  min-height: 72px;
  padding: 14px 18px 14px 28px;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #e4e0d8;
  background: #fbfaf7;
}

.home-page .premium-testimonial .slider-count {
  color: #777e8a;
  font-size: 12px;
  font-weight: 800;
}

.home-page .premium-testimonial .slider-buttons {
  display: flex;
  gap: 8px;
}

.home-page .premium-testimonial .slider-btn {
  display: grid;
  width: 42px;
  height: 42px;
  padding: 0;
  place-items: center;
  border: 1px solid #cfc8bb;
  border-radius: 5px;
  background: #fff;
  color: #263348;
  font-size: 18px;
  cursor: pointer;
  transition: border-color .18s ease, color .18s ease, transform .18s ease;
}

.home-page .premium-testimonial .slider-btn:hover {
  border-color: #b88d38;
  color: #8d6a28;
  transform: translateY(-1px);
}

.home-page .faq-section {
  padding: 112px 0;
}

.home-page .refined-contact {
  padding-top: 112px !important;
  padding-bottom: 112px !important;
}

.home-page .contact-map-panel {
  display: grid;
  margin-top: 72px;
  padding-top: 72px;
  grid-template-columns: minmax(0, .68fr) minmax(0, 1.32fr);
  gap: 48px;
  align-items: stretch;
  border-top: 1px solid rgba(224, 189, 114, .22);
}

.home-page .contact-map-copy {
  display: flex;
  padding: 18px 0;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.home-page .contact-map-copy h3 {
  max-width: 420px;
  color: #fff;
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  line-height: 1.2;
}

.home-page .contact-map-copy > p:not(.eyebrow) {
  max-width: 430px;
  margin-top: 16px;
  color: rgba(255, 255, 255, .62);
  font-size: 14px;
  line-height: 1.75;
}

.home-page .contact-map-copy .btn {
  margin-top: 28px;
  border-radius: 5px;
}

.home-page .contact-map-panel .map-frame {
  width: 100%;
  min-height: 360px;
  border: 1px solid rgba(224, 189, 114, .32);
  border-radius: 8px;
  filter: saturate(.78) contrast(.96);
  box-shadow: 0 26px 70px rgba(0, 0, 0, .24);
}

.home-page .contact-icon svg {
  width: 22px;
  height: 22px;
  stroke-width: 1.8;
}

.home-page .footer {
  padding-top: 48px;
  padding-bottom: 48px;
}

@media (max-width: 980px) {
  .home-page .testimonial-editorial,
  .home-page .contact-map-panel {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

@media (max-width: 640px) {
  .home-page .testimonial-section,
  .home-page .faq-section {
    padding: 72px 0;
  }

  .home-page .testimonial-editorial {
    gap: 30px;
  }

  .home-page .premium-testimonial .review-quote {
    top: 20px;
    left: 24px;
    font-size: 88px;
  }

  .home-page .premium-testimonial .review-slide {
    min-height: 330px;
    padding: 88px 24px 38px;
  }

  .home-page .premium-testimonial .review-slide p {
    font-size: 20px;
  }

  .home-page .refined-contact {
    padding-top: 76px !important;
    padding-bottom: 76px !important;
  }

  .home-page .contact-map-panel {
    margin-top: 52px;
    padding-top: 52px;
  }

  .home-page .contact-map-copy h3 {
    font-size: 30px;
  }

  .home-page .contact-map-panel .map-frame {
    min-height: 290px;
  }
}
