:root {
  --sir-blue: #002349;
  --sir-blue-xd: #001153;
  --gold: #897103;
  --text-grey: #666666;
  --cream: #f6f2ea;
  --white: #ffffff;

  --font-heading: "Playfair Display", Georgia, serif;
  --font-body: Arial, Helvetica, sans-serif;
  
  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 24px;
  --space-lg: 40px;
  --space-xl: 64px;
  --space-2xl: 96px;
}

* {
  box-sizing: border-box;
}

html {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
}

body {
  width: 100%;
  max-width: 100%;
  margin: 0;
  overflow-x: hidden;
  background: var(--cream);
  color: var(--sir-blue);
  font-family: var(--font-body);
}

.section-container {
  width: min(1180px, calc(100% - 56px));
  margin: 0 auto;
}

/* HERO */

.hero {
  position: relative;
  min-height: 680px;
  color: white;
  background-image: url("../images/hero/estate-home.jpg");
  background-size: cover;
  background-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 17, 83, 0.92), rgba(0, 35, 73, 0.62) 42%, rgba(0, 35, 73, 0.12)),
    linear-gradient(180deg, rgba(0, 17, 83, 0.16), rgba(0, 17, 83, 0.32));
}

.site-nav {
  position: relative;
  z-index: 100;
  padding: 28px 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  
  background: var(--sir-blue);
  border-bottom: 2px solid var(--gold);
}

.site-brand {
  color: white;
  text-decoration: none;
}

.brand-title {
  display: block;
  font-family: var(--font-heading);
  font-size: 2rem;
  line-height: 1;
}

.brand-tagline {
  display: block;
  margin-top: 8px;
  color: rgba(255,255,255,0.78);
  font-size: 0.86rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 700;
}

.nav-links > a.is-active,
.nav-dropdown > summary.is-active {
  color: white;
  background-image: linear-gradient(var(--gold), var(--gold));
  background-size: 100% 3px;
  background-position: left bottom;
  background-repeat: no-repeat;
}

.nav-button {
  border: 1px solid rgba(255,255,255,0.72);
  padding: 13px 21px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* PRIMARY NAV DROPDOWN */

.nav-dropdown {
  position: relative;
}

.nav-dropdown summary {
  color: white;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
  white-space: nowrap;
}

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

.nav-dropdown summary::after {
  content: " ▾";
  color: var(--gold);
  font-size: 0.8em;
}

.nav-dropdown[open] summary::after {
  content: " ▴";
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 0;
  z-index: 200;

  width: 250px;
  padding: 8px 0;

  background: var(--sir-blue);
  border: 1px solid rgba(255,255,255,0.14);
  border-top: 2px solid var(--gold);

  box-shadow: 0 14px 32px rgba(0,17,83,0.22);
}

.nav-dropdown-menu a {
  display: block;
  padding: 12px 16px;

  color: white;
  font-size: 0.88rem;
  line-height: 1.3;
  white-space: normal;
}

.nav-dropdown-menu a:hover {
  background: rgba(255,255,255,0.08);
  color: white;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 580px;
  padding: 86px 44px 70px;
}

.eyebrow {
  margin: 16px 0 12px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 1.0rem;
  font-weight: 800;
}

h1 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(3.25rem, 5.6vw, 5.6rem);
  line-height: 1.02;
  font-weight: 400;
  letter-spacing: -0.035em;
}

.gold-rule {
  width: 72px;
  height: 2px;
  margin: 26px 0;
  background: var(--gold);
}

.gold-rule.small {
  width: 54px;
  margin: 16px 0 22px;
}

.hero-inner p:not(.eyebrow) {
  max-width: 520px;
  margin: 0;
  color: rgba(255,255,255,0.92);
  font-size: 1.05rem;
  line-height: 1.65;
  font-weight: 700;
}

.hero-actions {
  margin-top: 30px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.button {
  display: inline-block;
  padding: 14px 26px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.82rem;
  font-weight: 800;
}

.button-primary {
  color: white;
  background: var(--sir-blue);
  border: 1px solid rgba(255,255,255,0.25);
}

.button-secondary {
  color: white;
  border: 1px solid rgba(255,255,255,0.55);
}

/* PRINCIPLES */

.principles-strip {
  background: var(--cream);
  padding: 28px 0 0;
}

.principles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 56px;
  padding-bottom: 22px;
  border-bottom: 2px solid var(--gold);
}

.principles-grid h3 {
  margin: 0 0 8px;
  color: var(--sir-blue-xd);
  font-size: 1rem;
}

.principles-grid p {
  margin: 0;
  color: var(--text-grey);
  font-size: 0.94rem;
  line-height: 1.45;
}

/* MEET DENNIS */

.meet-section {
  background: var(--cream);
  padding: 22px 0 96px;
}

.meet-grid {
  max-width: 980px;
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 60px;
  align-items: center;
}

.portrait-wrap img {
  width: 100%;
  display: block;
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(0, 17, 83, 0.12);
}

.broker-logo {
  display: block;
  width: 300px;
  max-width: 100%;
  margin-bottom: 26px;
}

.bio h2 {
  margin: 0;
  color: var(--sir-blue-xd);
  font-family: var(--font-heading);
  font-size: 2.2rem;
  line-height: 1.00;
  font-weight: 400;
}

.title-line {
  margin: 10px 0 8px;
  color: #2c2c2c;
  font-size: 1rem;
  font-weight: 800;
}

.bio p {
  max-width: 620px;
  color: #2c2c2c;
  line-height: 1.5;
  font-size: 0.95rem;
}

.read-link {
  display: inline-block;
  margin-top: 6px;
  color: var(--sir-blue);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 800;
  text-decoration: none;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 8px;
}

/* FOOTER */

.site-footer {
  background: var(--sir-blue);
  color: rgba(255,255,255,.78);
  padding: 32px 44px 34px;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 180px 1fr auto;
  gap: 34px;
  align-items: start;
  padding-bottom: 18px;
  margin-bottom: 18px;
  border-bottom: 1px solid rgba(255,255,255,.14);
}

.footer-inner h4 {
  margin: 0;
  color: white;
  font-size: .95rem;
  line-height: 1.1;
  font-weight: 800;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 16px;
}

.footer-links a {
  color: rgba(255,255,255,.82);
  text-decoration: none;
  font-size: .72rem;
  font-weight: 700;
}

.footer-links a:hover {
  color: white;
}

.footer-version {
  margin: 0;
  color: rgba(255,255,255,.68);
  font-size: .70rem;
  line-height: 1.35;
  text-align: right;
  overflow-wrap: anywhere;
}

.footer-disclaimer {
  max-width: 1000px;
  color: rgba(255,255,255,.56);
  font-size: .62rem;
  line-height: 1.32;
}

.footer-disclaimer p {
  margin: 0 0 7px;
}

/* Compliance Logos */

.bio {
    position: relative;
    padding-right: 190px;   /* reserve room for the logos */
}

.compliance-logos {
    position: absolute;
    right: 0;
    bottom: 10px;

    display: flex;
    gap: 16px;
    align-items: center;
}

.compliance-logos img {
    width: auto;
    height: 30px;
    opacity: 0.75;
    transition: opacity .2s ease;
}

.compliance-logos img:hover {
    opacity: 1;
}

@media (max-width: 768px) {

    .bio {
        padding-right: 0;
    }

    .compliance-logos {
        position: static;
        margin-top: 20px;
        justify-content: flex-start;
    }

    .compliance-logos img {
        height: 30px;
    }

}

/* BASIC CONTENT PAGES */

.page-section {
  background: var(--cream);
  padding: 50px 0 90px;
}

.page-section .section-container {
  width: min(980px, calc(100% - 56px));
}

.page-section h1 {
  margin: 0 0 26px;
  color: var(--sir-blue-xd);
  font-family: var(--font-heading);
  font-size: clamp(2.15rem, 3.2vw, 3rem);
  line-height: 1.12;
  font-weight: 400;
  letter-spacing: -0.02em;
  max-width: 760px;
}

.page-section p:not(.eyebrow) {
  max-width: 760px;
  color: #2c2c2c;
  font-size: 1.05rem;
  line-height: 1.6;
}

/* HOW WE HELP */

.help-section {
  background: var(--white);
  padding: 76px 0 88px;
}

.section-title {
  margin: 0 0 34px;
  max-width: 760px;
  color: var(--sir-blue-xd);
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.12;
  font-weight: 400;
  letter-spacing: -0.02em;
}

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

.help-card {
  border-top: 3px solid var(--gold);
  background: var(--cream);
  padding: 30px 28px 28px;
  min-height: 245px;
}

.help-card h3 {
  margin: 0 0 14px;
  color: var(--sir-blue-xd);
  font-family: var(--font-heading);
  font-size: 1.55rem;
  font-weight: 400;
}

.help-card p {
  margin: 0 0 24px;
  color: #2c2c2c;
  line-height: 1.55;
  font-size: 0.96rem;
}

.help-card a {
  color: var(--sir-blue);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.78rem;
  font-weight: 800;
  text-decoration: none;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 7px;
}

/* EXECUTOR COMPANION */

.companion-container{
    max-width:900px;
}

.page-title{
    font-size:clamp(2.8rem,4vw,4.2rem);
    margin-bottom:16px;
}

.companion-intro{
    max-width:700px;
    margin-bottom:40px;
    font-size:1.1rem;
    line-height:1.7;
}

.companion-heading{
    margin-bottom:18px;
    font-family:var(--font-heading);
    font-size:2rem;
    color:var(--sir-blue-xd);
}

.journey-list{
    display:flex;
    flex-direction:column;
    gap:18px;
}

.journey-card{

    display:flex;
    align-items:center;
    gap:28px;

    min-height: 120px;

    padding:26px 32px;

    background:white;

    border:1px solid #e6e2d8;
    border-radius:10px;

    text-decoration:none;

    transition:.18s;
}

.journey-card:hover {
    transform: translateY(-3px) scale(1.01);
    border-color: var(--gold);
    box-shadow: 0 18px 48px rgba(0,35,73,.12);
}

.journey-icon {

    width: 72px;
    height: 72px;

    display: flex;
    justify-content: center;
    align-items: center;

    border-radius: 50%;

    background: var(--sir-blue);

    color: white;

    font-size: 1.6rem;
    font-weight: 700;

    flex-shrink: 0;

}

.journey-content h3{

    margin:0 0 8px;

    color:var(--sir-blue-xd);

    font-family:var(--font-heading);

    font-size:1.55rem;

}

.journey-content p{

    margin:0;

    color:var(--text-grey);

}

.journey-content {

    flex: 1;

}

.journey-arrow {

    display:flex;
    align-items:center;
    justify-content:center;
    margin-left: auto;
    color: var(--gold);
    font-size: 2rem;
    transition: .2s ease;

}

.journey-card:hover .journey-arrow {

    transform: translateX(6px);

}

/* FIRST STEPS */

.checklist{

    display:flex;
    flex-direction:column;

    gap:18px;

    margin-top:40px;

}

.check-item{

    display:block;

    padding:28px 34px;

    background:white;

    border-left:5px solid var(--gold);

    border-radius:8px;

    text-decoration:none;

    transition:.18s;

}

.check-item:hover{

    transform:translateX(4px);

    box-shadow:0 12px 36px rgba(0,0,0,.08);

}

.check-item h3{

    margin:0 0 10px;

    color:var(--sir-blue-xd);

    font-family:var(--font-heading);

    font-size:1.45rem;

}

.check-item p{

    margin:0;

    color:var(--text-grey);

    line-height:1.55;

}

/* NEED GUIDANCE */

.need-guidance {
  margin-top: 44px;
  padding: 30px 34px;
  background: var(--sir-blue);
  color: white;
  border-radius: 8px;
}

.need-guidance h3,
.page-section .need-guidance h3 {
  color: white;
  margin: 0 0 10px;
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 400;
}

.need-guidance p,
.page-section .need-guidance p {
  max-width: 760px;
  margin: 0;
  color: rgba(255,255,255,.82);
  line-height: 1.55;
  font-size: .95rem;
}

.guidance-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 22px;
}

.guidance-actions a {
  color: white;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: .78rem;
  font-weight: 800;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 7px;
}

/* GUIDE CONTENT */

.guidance-box {
  margin: 24px 0 28px;
  padding: 14px 18px;
  background: white;
  border-left: 4px solid var(--gold);
  color: var(--sir-blue);
  font-size: .9rem;
  line-height: 1.45;
  font-weight: 700;
}

.guide-content {
  margin-top: 36px;
}

.guide-content h2 {
  margin: 34px 0 10px;
  color: var(--sir-blue-xd);
  font-family: var(--font-heading);
  font-size: 1.65rem;
  font-weight: 400;
}

.guide-content p {
  max-width: 760px;
  color: #2c2c2c;
  font-size: 1rem;
  line-height: 1.62;
}

.guide-content ul {
  max-width: 760px;
  margin: 14px 0 0;
  padding-left: 22px;
  color: #2c2c2c;
  line-height: 1.7;
}

.guide-content li {
  margin-bottom: 6px;
}

/* CONTINUE JOURNEY */

.continue-journey {
  margin-top: 44px;
  padding: 30px 34px;
  background: white;
  border: 1px solid #e6e2d8;
  border-radius: 8px;
}

.continue-journey h3 {
  margin: 0 0 18px;
  color: var(--sir-blue-xd);
  font-family: var(--font-heading);
  font-size: 1.55rem;
  font-weight: 400;
}

.continue-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 18px;
}

.continue-grid a {
  color: var(--sir-blue);
  text-decoration: none;
  font-weight: 800;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 7px;
}

@media (max-width: 640px) {
  .continue-grid {
    grid-template-columns: 1fr;
  }
}

/* Journey Navigation */

.journey-nav {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(0, 35, 73, 0.15);
  font-size: 0.95rem;
}

.journey-nav-link {
  color: #002349;
  text-decoration: none;
  font-weight: 600;
}

.journey-nav-link:hover {
  text-decoration: underline;
}

.journey-nav-next {
  text-align: right;
  margin-left: auto;
}

@media (max-width: 640px) {
  .journey-nav {
    flex-direction: column;
    gap: 0.6rem;
  }

  .journey-nav-next {
    text-align: left;
    margin-left: 0;
  }
}


/* Guide Location + Navigation */

.guide-location {
  margin: 1.5rem 0 2rem;
  padding: 1rem 1.25rem;
  border-left: 4px solid #897103;
  background: rgba(0, 35, 73, 0.04);
}

.guide-location-label,
.guide-location-position {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #666666;
}

.guide-location-parent {
  display: inline-block;
  margin: 0.25rem 0;
  color: #002349;
  font-weight: 700;
  text-decoration: none;
}

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

.guide-nav-card {
  display: block;
  padding: 1rem;
  border: 1px solid rgba(0, 35, 73, 0.18);
  text-decoration: none;
  color: #002349;
}

.guide-nav-card span {
  display: block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #666666;
  margin-bottom: 0.35rem;
}

.guide-nav-card strong {
  font-size: 0.95rem;
}

.guide-nav-center {
  text-align: center;
}

@media (max-width: 700px) {
  .guide-nav {
    grid-template-columns: 1fr;
  }

  .guide-nav-center {
    text-align: left;
  }
}


/* Guide Trail Navigation */

.guide-trail {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;

  /* changed */
  margin: -12px 0 16px;

  padding-bottom: 12px;

  border-bottom: 1px solid rgba(0, 35, 73, 0.16);

  color: var(--sir-blue);
  font-size: 0.95rem;
  font-weight: 700;
}

.guide-trail a {
  color: var(--sir-blue);
  text-decoration: none;
}

.guide-trail a:hover {
  text-decoration: underline;
}

.guide-trail-parent {
  color: var(--gold);
  font-weight: 900;
}

.guide-trail-current {
  color: var(--gold);
  font-weight: 900;
}

.guide-trail-sep {
  color: var(--text-grey);
}

.guide-trail-gap {
    display: inline-block;
    width: 12px;
}

@media (max-width: 700px) {
  .guide-trail {
    line-height: 1.55;
  }
}

/* QUESTIONS HUB */

.question-category-list {
  margin-top: 38px;
}

.question-category-card {
  align-items: stretch;
}

.question-category-badge {
  width: 170px;
  min-height: 88px;

  display: flex;
  align-items: center;
  justify-content: center;

  flex-shrink: 0;

  padding: 18px;

  background: var(--sir-blue);
  border-radius: 8px;

  color: white;

  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.08em;

  font-size: 0.78rem;
  line-height: 1.4;
  font-weight: 800;
}

.questions-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.questions-item {
  overflow: hidden;

  background: white;

  border: 1px solid #e6e2d8;
  border-radius: 8px;
}

.questions-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;

  min-height: 68px;
  padding: 17px 20px;

  color: var(--sir-blue-xd);

  cursor: pointer;
  list-style: none;
}

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

.questions-item summary:hover {
  color: var(--gold);
}

.questions-item-title {
  font-family: var(--font-heading);
  font-size: 1.02rem;
  line-height: 1.4;
  font-weight: 700;
}

.questions-item-toggle {
  width: 32px;
  height: 32px;

  display: flex;
  align-items: center;
  justify-content: center;

  flex-shrink: 0;

  background: var(--sir-blue);
  border-radius: 50%;

  color: white;

  font-size: 1.15rem;
  line-height: 1;

  transition: 0.18s ease;
}

.questions-item[open] .questions-item-toggle {
  transform: rotate(45deg);
  background: var(--gold);
}

.questions-answer {
  padding: 0 64px 23px 20px;
}

.page-section .questions-answer p {
  margin: 0 0 18px;

  max-width: 700px;

  color: #2c2c2c;
  font-size: 0.98rem;
  line-height: 1.62;
}

.questions-answer a,
.questions-category-return a {
  display: inline-block;

  color: var(--sir-blue);

  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.76rem;
  font-weight: 800;

  border-bottom: 1px solid var(--gold);
  padding-bottom: 7px;
}

.questions-answer a:hover,
.questions-category-return a:hover {
  color: var(--gold);
}

.questions-category-return {
  margin-top: 34px;
}

@media (max-width: 700px) {

  .question-category-card {
    align-items: center;
  }

  .question-category-badge {
    width: 112px;
    min-height: 82px;
    padding: 12px;
    font-size: 0.68rem;
  }

  .questions-item summary {
    padding: 16px 17px;
  }

  .questions-item-title {
    font-size: 0.98rem;
  }

  .questions-answer {
    padding: 0 17px 21px;
  }

}

/* ================================================================
   MOBILE EXECUTOR COMPANION CARDS
   Two-part layout: centered badge gutter + content block.
   ================================================================ */
@media (max-width: 640px) {
  .companion-heading { font-size: 1.75rem; line-height: 1.15; }
  .journey-list { gap: 12px; }

  .journey-card {
    position: relative;
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    column-gap: 14px;
    align-items: center;
    width: 100%;
    min-width: 0;
    min-height: 0;
    padding: 17px 46px 17px 16px;
    border-radius: 8px;
  }

  .journey-icon {
    grid-column: 1;
    align-self: center;
    justify-self: center;
    width: 32px;
    height: 32px;
    flex: none;
    font-size: 0.78rem;
    line-height: 1;
  }

  .journey-content {
    grid-column: 2;
    min-width: 0;
    flex: none;
  }

  .journey-content h3 {
    margin: 0 0 4px;
    font-size: 1.05rem;
    line-height: 1.15;
    letter-spacing: -0.01em;
  }

  .journey-content p {
    margin: 0;
    color: #2c2c2c;
    font-size: 0.82rem;
    line-height: 1.35;
  }

  .journey-arrow {
    position: absolute;
    right: 16px;
    bottom: 18px;
    display: block;
    margin: 0;
    font-size: 1.25rem;
    line-height: 1;
  }

  .journey-card:hover,
  .journey-card:hover .journey-arrow { transform: none; }
}

.companion-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  text-decoration: none;
}

.companion-eyebrow:hover {
  text-decoration: underline;
}

/* MOBILE FIRST STEPS / COMPANION CONTENT POLISH */

@media (max-width: 640px) {

  /* First Steps task cards */

  .checklist {
    gap: 12px;
    margin-top: 28px;
  }

  .check-item {
    padding: 18px 20px;
    border-left-width: 4px;
  }

  .check-item h3 {
    margin-bottom: 5px;
    font-size: 1.15rem;
    line-height: 1.2;
  }

  .check-item p {
    font-size: 0.88rem;
    line-height: 1.4;
  }

  /* Continue Your Journey */

  .continue-journey {
    margin-top: 30px;
    padding: 20px;
  }

  .continue-journey h3 {
    margin-bottom: 14px;
    font-size: 1.25rem;
  }

  .continue-grid {
    gap: 10px;
  }

  .continue-grid a {
    font-size: 0.88rem;
    padding-bottom: 5px;
  }

  /* Need Personal Guidance */

  .need-guidance {
    margin-top: 30px;
    padding: 22px 20px;
  }

  .need-guidance h3,
  .page-section .need-guidance h3 {
    margin-bottom: 7px;
    font-size: 1.3rem;
  }

  .need-guidance p,
  .page-section .need-guidance p {
    font-size: 0.88rem;
    line-height: 1.45;
  }

  .guidance-actions {
    gap: 14px;
    margin-top: 16px;
  }

  .guidance-actions a {
    font-size: 0.72rem;
    padding-bottom: 5px;
  }
}

/* =========================================================
   Resources
   ========================================================= */

.resources-page {
  padding: 50px 0 90px;
}

.resources-page .section-container {
  max-width: 900px;
}

.resources-hero {
    max-width: 780px;
    margin-bottom: 3.5rem;
}

.resources-hero h1 {
    margin-bottom: 1.25rem;
}

.resources-intro {
    max-width: 720px;
    font-size: 1.1rem;
    line-height: 1.7;
}

.resource-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
}

.resource-card {
    display: flex;
    flex-direction: column;
    min-height: 230px;
    padding: 1.65rem 1.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(0, 35, 73, 0.16);
    border-top: 3px solid var(--gold);
}

.resource-card .eyebrow {
    margin: 0 0 0.55rem;
}

.resource-card h2 {
    margin: 0 0 0.8rem;
    font-size: 1.5rem;
    line-height: 1.18;
}

.resource-card p {
    margin: 0;
    line-height: 1.55;
}

.resource-card-link {
    color: inherit;
    text-decoration: none;
}

.resource-card-link:hover,
.resource-card-link:focus-visible {
    border-color: rgba(0, 35, 73, 0.28);
    border-top-color: var(--gold);
}

.resource-card-link:hover h2,
.resource-card-link:focus-visible h2 {
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}

.resource-link {
    display: inline-block;
    margin-top: auto;
    padding-top: 1.1rem;
    font-weight: 700;
    color: #002349;
    letter-spacing: 0.02em;
}

.resources-note {
  width: 100%;
  max-width: 900px;
  margin-top: 30px;
  padding: 24px 28px;
  border-left: 3px solid var(--gold);
  background: rgba(137, 113, 3, 0.08);
}

.resources-note p {
    margin: 0;
    line-height: 1.65;
    font-size: 0.95rem;
}

.resources-page .continue-journey {
  width: 100%;
  max-width: 900px;
  margin: 24px 0 0;
  padding: 32px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(0, 35, 73, 0.16);
  border-radius: 0;
  box-sizing: border-box;
}

.resources-page .continue-journey h3 {
  margin-top: 0;
}

@media (max-width: 768px) {

    .resources-hero {
        margin-bottom: 2.5rem;
    }

    .resource-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .resource-card {
        min-height: auto;
        padding: 1.35rem 1.3rem 1.25rem;
    }

    .resource-card .eyebrow {
        margin-bottom: 0.45rem;
    }

    .resource-card h2 {
        margin-bottom: 0.65rem;
        font-size: 1.32rem;
        line-height: 1.16;
    }

    .resource-card p {
        line-height: 1.5;
    }

    .resource-card .resource-link {
        padding-top: 0.9rem;
    }

    .resources-note {
        margin-top: 2rem;
        padding: 1.25rem 1.35rem;
    }
}

.resource-detail-list {
    display: grid;
    gap: 1.5rem;
    max-width: 900px;
}

.resource-detail-card {
    padding: 1.6rem 1.8rem 1.5rem;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(0, 35, 73, 0.16);
    border-top: 3px solid var(--gold);
}

.resource-detail-card .eyebrow {
    margin: 0 0 0.45rem;
}

.resource-detail-card h2 {
    margin: 0 0 0.85rem;
}

.resource-detail-card h3 {
    margin: 1.15rem 0 0.4rem;
}

.resource-detail-card p {
    margin-top: 0;
    line-height: 1.6;
}

.resource-detail-card .resource-link {
    display: inline-block;
    margin-top: 0.75rem;
}

.professional-tip {
    margin-top: 1.4rem;
    padding: 1.15rem 1.25rem 1rem;
    background: rgba(184, 151, 91, 0.08);
    border-left: 3px solid var(--gold);
}

.professional-tip .eyebrow {
    margin-bottom: 0.35rem;
}

.professional-tip h4 {
    margin: 0 0 0.75rem;
    color: var(--sir-blue);
    font-size: 1.08rem;
}

.resource-detail-card .professional-tip p {
    margin-bottom: 0.8rem;
}

.resource-detail-card .professional-tip .professional-tip-attribution {
    margin: 1rem 0 0;
    font-style: italic;
    font-size: 0.92rem;
}

/* =========================================================
   Surrogate Directory
   ========================================================= */

.surrogate-finder {
  margin-top: 28px;
}

.surrogate-finder label {
  display: block;
  margin-bottom: 8px;
  color: var(--sir-blue);
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.surrogate-finder select {
  width: 100%;
  max-width: 420px;
  padding: 13px 42px 13px 14px;
  border: 1px solid rgba(0, 35, 73, 0.24);
  border-radius: 0;
  background: #fff;
  color: var(--sir-blue);
  font: inherit;
}

.surrogate-result {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(0, 35, 73, 0.14);
}

.surrogate-office h3 {
  margin: 0 0 8px;
  color: var(--sir-blue);
  font-family: var(--font-heading);
  font-size: 1.45rem;
}

.surrogate-name {
  margin-bottom: 8px;
  font-weight: 700;
}

.surrogate-office p {
  margin: 6px 0;
}

.resource-source {
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid rgba(0, 35, 73, 0.10);
  color: var(--text-grey);
  font-size: 0.78rem;
}

.resource-source a {
  color: var(--sir-blue);
}

.surrogate-directory .resource-source {
  margin-top: 18px;
  padding-top: 16px;
}

.surrogate-finder {
  margin-top: 22px;
}

.probate-related-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

@media (max-width: 640px) {
  .probate-related-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   GLOBAL RESPONSIVE OVERRIDES
   Keep this section after all base component styles so
   tablet/mobile rules win cleanly in the cascade.
   ========================================================= */

@media (max-width: 900px) {
  .site-nav {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav-links {
    flex-wrap: wrap;
    gap: 18px;
  }

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

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

  .portrait-wrap {
    max-width: 420px;
  }
}

@media (max-width: 640px) {
  .hero {
    min-height: auto;
  }

  .site-nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 24px;
  }

  .brand-title {
    font-size: 1.65rem;
  }

  .nav-links {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
    gap: 18px 24px;
  }

  .nav-links > a:not(.nav-button) {
    display: inline-block;
  }

  .nav-dropdown {
    width: auto;
  }

  .nav-dropdown summary {
    display: inline-block;
    white-space: nowrap;
  }

  .nav-button {
    display: inline-block;
    margin: 0 0 0 auto;
    padding: 13px 21px;
  }

  .nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    width: min(280px, calc(100vw - 48px));
    margin-top: 0;
    box-shadow: 0 14px 32px rgba(0,17,83,0.22);
  }

  .nav-dropdown-menu a {
    display: block !important;
  }

  .hero-inner {
    padding: 58px 24px 64px;
  }

  h1 {
    font-size: clamp(2.75rem, 13vw, 3.25rem);
  }

  .section-container,
  .page-section .section-container {
    width: calc(100% - 40px);
    max-width: 100%;
  }

  /* Home: How We Help */

  .help-section {
    padding: 52px 0 60px;
  }

  .help-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 16px;
    width: 100%;
  }

  .help-card {
    width: 100%;
    min-width: 0;
    min-height: 0;
    padding: 24px 22px;
  }

  .help-card h3 {
    font-size: 1.4rem;
    line-height: 1.2;
  }

  .help-card p {
    font-size: 0.94rem;
    line-height: 1.5;
  }

  /* Footer */

  .site-footer {
    width: 100%;
    max-width: 100%;
    padding: 34px 24px;
  }

  .footer-inner {
    width: 100%;
    max-width: 100%;
  }

  .footer-top {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    padding-bottom: 24px;
    margin-bottom: 22px;
  }

  .footer-inner h4 {
    font-size: 1rem;
  }

  .footer-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 24px;
  }

  .footer-links a {
    font-size: 0.82rem;
  }

  .footer-version {
    max-width: 100%;
    font-size: 0.75rem;
    line-height: 1.5;
    text-align: left;
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .footer-disclaimer {
    max-width: 100%;
    font-size: 0.72rem;
    line-height: 1.45;
  }
}

/* =========================================================
   Resources Guide Index
   ========================================================= */

.resource-guide-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
    margin: 1rem 0 0.35rem;
    border-top: 1px solid rgba(0, 35, 73, 0.12);
}

.resource-guide-links a {
    display: block;
    padding: 0.8rem 0.9rem 0.8rem 0;
    border-bottom: 1px solid rgba(0, 35, 73, 0.10);
    color: var(--sir-blue);
    text-decoration: none;
    line-height: 1.35;
}

.resource-guide-links a:nth-child(odd) {
    padding-right: 1.25rem;
}

.resource-guide-links a:nth-child(even) {
    padding-left: 1.25rem;
    border-left: 1px solid rgba(0, 35, 73, 0.10);
}

.resource-guide-links a:hover,
.resource-guide-links a:focus-visible {
    text-decoration: underline;
    text-underline-offset: 3px;
}

@media (max-width: 768px) {
    .resource-guide-links {
        grid-template-columns: 1fr;
    }

    .resource-guide-links a,
    .resource-guide-links a:nth-child(odd),
    .resource-guide-links a:nth-child(even) {
        padding: 0.72rem 0;
        border-left: 0;
    }
}


/* =========================================================
   A Note From Dennis
   ========================================================= */

.about-hero,
.about-story {
    max-width: 860px;
}

.about-hero {
    margin-bottom: 2.5rem;
}

.about-hero h1 {
    margin-bottom: 1rem;
}

.about-intro {
    max-width: 780px;
    font-size: 1.15rem;
    line-height: 1.65;
}

.about-story {
    display: grid;
    gap: 1.35rem;
}

.about-section {
    max-width: 780px;
}

.about-section .eyebrow {
    margin-bottom: 0.45rem;
}

.about-section h2 {
    margin: 0 0 1rem;
}

.about-section p {
    line-height: 1.7;
}

.about-callout {
    max-width: 780px;
    padding: 1.5rem 1.75rem;
    border-left: 3px solid var(--gold);
    background: rgba(255, 255, 255, 0.62);
}

.about-callout p {
    margin: 0;
    color: var(--sir-blue);
    font-family: var(--font-heading);
    font-size: 1.45rem;
    line-height: 1.4;
}

.about-philosophy {
    max-width: 780px;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(0, 35, 73, 0.14);
    border-bottom: 1px solid rgba(0, 35, 73, 0.14);
}

.about-philosophy p {
    margin: 0;
    color: var(--sir-blue);
    font-family: var(--font-heading);
    font-size: 1.35rem;
    line-height: 1.4;
}

.about-closing {
    padding-bottom: 0.5rem;
}

.about-signature {
    margin-top: 1.4rem;
}

.about-signature img {
    display: block;
    width: 100%;
    max-width: 300px;
    height: auto;
}

@media (max-width: 768px) {
    .about-hero {
        margin-bottom: 2rem;
    }

    .about-intro {
        font-size: 1.05rem;
    }

    .about-story {
        gap: 1.15rem;
    }

    .about-callout {
        padding: 1.25rem 1.3rem;
    }

    .about-callout p {
        font-size: 1.25rem;
    }

    .about-philosophy p {
        font-size: 1.2rem;
    }

    .about-signature img {
        max-width: 240px;
    }
}

/* =========================================================
   About Dennis
   ========================================================= */

.dennis-profile {
    display: grid;
    grid-template-columns: minmax(240px, 290px) minmax(0, 1fr);
    gap: 3rem;
    max-width: 1000px;
    align-items: start;
}

.dennis-profile-image img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.dennis-profile-content {
    max-width: 650px;
}

.dennis-profile-content .eyebrow {
    margin-top: 0;
    margin-bottom: 0.7rem;
}

.dennis-profile-content h1 {
    margin-bottom: 0.45rem;
}

.dennis-profile-content p {
    line-height: 1.7;
}

.dennis-title {
    margin: 0;
    color: var(--sir-blue);
    font-weight: 600;
    line-height: 1.5;
}

.dennis-detail {
    display: grid;
    gap: 1.5rem;
    max-width: 900px;
    margin-top: 3rem;
}

.dennis-section {
    padding: 1.6rem 1.8rem 1.5rem;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(0, 35, 73, 0.16);
    border-top: 3px solid var(--gold);
}

.dennis-section .eyebrow {
    margin: 0 0 0.45rem;
}

.dennis-section h2 {
    margin: 0 0 1rem;
}

.dennis-section p {
    line-height: 1.65;
}

.dennis-section .resource-link {
    display: inline-block;
    margin-top: 0.5rem;
}

@media (max-width: 768px) {
    .dennis-profile {
        grid-template-columns: 1fr;
        gap: 1.75rem;
    }

    .dennis-profile-image {
        max-width: 300px;
    }

    .dennis-detail {
        margin-top: 2.25rem;
    }

    .dennis-section {
        padding: 1.35rem 1.3rem 1.25rem;
    }
}

.dennis-bio {
    max-width: 900px;
    margin-top: 1.75rem;
}

.dennis-bio p {
    line-height: 1.7;
}

/* About Dennis brokerage identity */

.dennis-brand {
    max-width: 330px;
    margin-bottom: 1.75rem;
}

.dennis-brand img {
    display: block;
    width: 100%;
    height: auto;
}

.dennis-contact-details {
    margin-top: 0;
}

.dennis-contact-details p {
    margin: 0 0 0.85rem;
    line-height: 1.55;
}

.dennis-contact-details a {
    color: var(--sir-blue);
    text-decoration: underline;
    text-underline-offset: 2px;
}

/* =========================================================
   Contact
   ========================================================= */

.contact-page {
    padding: 50px 0 90px;
}

.contact-hero {
    max-width: 820px;
    margin-bottom: 2.5rem;
}

.contact-intro {
    max-width: 760px;
    font-size: 1.1rem;
    line-height: 1.65;
}

.contact-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
    gap: 2.25rem;
    max-width: 1050px;
    align-items: start;
}

.contact-form-wrap,
.contact-profile {
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(0, 35, 73, 0.16);
    border-top: 3px solid var(--gold);
}

.contact-form-wrap {
    padding: 1.75rem 1.9rem;
}

.contact-form {
    display: grid;
    gap: 1.25rem;
}

.contact-field {
    display: grid;
    gap: 0.45rem;
}

.contact-field label {
    color: var(--sir-blue);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.field-optional {
    color: var(--text-grey);
    font-size: 0.76rem;
    font-weight: 400;
    letter-spacing: 0;
}

.contact-field input,
.contact-field select,
.contact-field textarea {
    width: 100%;
    box-sizing: border-box;
    padding: 0.8rem 0.9rem;
    border: 1px solid rgba(0, 35, 73, 0.24);
    border-radius: 0;
    background: #fff;
    color: var(--text-dark);
    font: inherit;
}

.contact-field textarea {
    resize: vertical;
    min-height: 150px;
}

.contact-field input:focus,
.contact-field select:focus,
.contact-field textarea:focus {
    outline: 2px solid rgba(0, 35, 73, 0.18);
    outline-offset: 1px;
    border-color: var(--sir-blue);
}

.contact-privacy-note,
.contact-development-note {
    margin: 0;
    color: var(--text-grey);
    font-size: 0.82rem;
    line-height: 1.5;
}

.contact-verification-placeholder {
    padding: 1rem;
    border: 1px dashed rgba(0, 35, 73, 0.22);
    color: var(--text-grey);
    font-size: 0.82rem;
}

.contact-submit {
    justify-self: start;
    padding: 0.8rem 1.25rem;
    border: 0;
    background: var(--sir-blue);
    color: #fff;
    font: inherit;
    font-weight: 700;
    cursor: pointer;
}

.contact-submit:disabled {
    opacity: 0.45;
    cursor: not-allowed;
}

.contact-profile {
    padding: 1.6rem 1.65rem;
}

.contact-brokerage-logo {
    display: block;
    width: 100%;
    max-width: 280px;
    height: auto;
    margin-bottom: 1.75rem;
}

.contact-profile h2 {
    margin: 0 0 0.35rem;
}

.contact-title {
    margin: 0 0 1.25rem;
    font-weight: 700;
}

.contact-profile p {
    line-height: 1.6;
}

.contact-profile a {
    color: var(--sir-blue);
}

.contact-profile-note {
    margin-top: 1.5rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(0, 35, 73, 0.12);
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .contact-page {
        padding: 40px 0 70px;
    }

    .contact-layout {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .contact-form-wrap,
    .contact-profile {
        padding: 1.35rem 1.3rem;
    }

    .contact-brokerage-logo {
        max-width: 260px;
    }
}

/* =========================================================
   Legal Pages
   ========================================================= */

.legal-page {
    padding: 50px 0 90px;
}

.legal-hero,
.legal-content {
    max-width: 860px;
}

.legal-hero {
    margin-bottom: 2.5rem;
}

.legal-hero h1 {
    margin-bottom: 0.5rem;
}

.legal-updated {
    margin: 0 0 1.4rem;
    color: var(--text-grey);
    font-size: 0.82rem;
}

.legal-intro {
    max-width: 780px;
    font-size: 1.08rem;
    line-height: 1.65;
}

.legal-content {
    display: grid;
    gap: 2rem;
}

.legal-content section {
    max-width: 800px;
}

.legal-content h2 {
    margin: 0 0 0.75rem;
    color: var(--sir-blue);
    font-size: 1.45rem;
}

.legal-content p {
    margin-top: 0;
    line-height: 1.7;
}

.legal-content a {
    color: var(--sir-blue);
}

@media (max-width: 768px) {
    .legal-page {
        padding: 40px 0 70px;
    }

    .legal-hero {
        margin-bottom: 2rem;
    }

    .legal-content {
        gap: 1.65rem;
    }

    .legal-content h2 {
        font-size: 1.3rem;
    }
}

.contact-form-message {
    padding: 0.9rem 1rem;
    border: 1px solid rgba(0, 35, 73, 0.18);
    font-size: 0.9rem;
    line-height: 1.5;
}

.contact-form-error {
    border-left: 3px solid #9b2c2c;
}

.contact-form-success {
    border-left: 3px solid var(--gold);
}

/* Contact spam honeypot */

.contact-honeypot {
    position: absolute !important;
    left: -10000px !important;
    top: auto !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}

.contact-privacy-note a {
    color: var(--sir-blue);
    text-decoration: underline;
    text-underline-offset: 2px;
}


/* ===== MOBILE NAVIGATION DRAWER TEST ===== */

.mobile-menu-toggle,
.mobile-nav-drawer,
.mobile-nav-backdrop {
  display: none;
}

@media (max-width: 900px) {

  body.mobile-nav-open {
    overflow: hidden;
  }

  .site-nav {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 22px 24px;
  }

  .site-brand {
    min-width: 0;
  }

  .brand-title {
    font-size: 1.65rem;
  }

  .brand-tagline {
    max-width: 275px;
    font-size: 0.76rem;
    line-height: 1.35;
  }

  .nav-links {
    display: none;
  }

  .mobile-menu-toggle {
    display: flex;
    flex: 0 0 46px;
    width: 46px;
    height: 46px;
    padding: 0;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;

    background: transparent;
    border: 1px solid rgba(255,255,255,0.42);
    cursor: pointer;
  }

  .mobile-menu-toggle span {
    display: block;
    width: 21px;
    height: 2px;
    background: white;
  }

  .mobile-menu-toggle:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 3px;
  }

  .mobile-nav-backdrop {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 998;

    background: rgba(0, 17, 45, 0.55);

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transition: opacity 0.2s ease, visibility 0.2s ease;
  }

  .mobile-nav-backdrop.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .mobile-nav-drawer {
    display: flex;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 999;

    width: min(86vw, 380px);
    flex-direction: column;

    background: var(--sir-blue);
    border-left: 2px solid var(--gold);
    box-shadow: -16px 0 40px rgba(0,17,83,0.28);

    transform: translateX(102%);
    visibility: hidden;

    transition: transform 0.22s ease, visibility 0.22s ease;

    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .mobile-nav-drawer.is-open {
    transform: translateX(0);
    visibility: visible;
  }

  .mobile-nav-header {
    min-height: 82px;
    padding: 20px 24px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    border-bottom: 1px solid rgba(255,255,255,0.15);
  }

  .mobile-nav-title {
    color: rgba(255,255,255,0.72);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
  }

  .mobile-nav-close {
    width: 42px;
    height: 42px;
    padding: 0;

    color: white;
    background: transparent;
    border: 0;

    font-family: Arial, sans-serif;
    font-size: 2rem;
    line-height: 1;

    cursor: pointer;
  }

  .mobile-nav-links {
    display: flex;
    flex-direction: column;
    padding: 10px 24px 36px;
  }

  .mobile-nav-links > a,
  .mobile-nav-companion > summary,
  .mobile-nav-help-menu > summary {
    display: flex;
    min-height: 62px;
    align-items: center;

    color: white;
    text-decoration: none;

    border-bottom: 1px solid rgba(255,255,255,0.14);

    font-family: var(--font-heading);
    font-size: 1.45rem;
    font-weight: 400;
    line-height: 1.2;
  }

  .mobile-nav-companion,
  .mobile-nav-help-menu {
    width: 100%;
  }

  .mobile-nav-companion > summary,
  .mobile-nav-help-menu > summary {
    position: relative;
    padding-right: 32px;
    list-style: none;
    cursor: pointer;
  }

  .mobile-nav-companion > summary::-webkit-details-marker,
  .mobile-nav-help-menu > summary::-webkit-details-marker {
    display: none;
  }

  .mobile-nav-companion > summary::after,
  .mobile-nav-help-menu > summary::after {
    content: "+";
    position: absolute;
    right: 2px;

    color: var(--gold);
    font-family: Arial, sans-serif;
    font-size: 1.4rem;
    font-weight: 300;
  }

  .mobile-nav-companion[open] > summary::after,
  .mobile-nav-help-menu[open] > summary::after {
    content: "−";
  }

  .mobile-nav-submenu {
    padding: 5px 0 14px 16px;
    border-bottom: 1px solid rgba(255,255,255,0.14);
  }

  .mobile-nav-submenu a {
    display: block;
    padding: 11px 8px;

    color: rgba(255,255,255,0.82);
    text-decoration: none;

    font-size: 0.9rem;
    font-weight: 700;
    line-height: 1.35;
  }

  .mobile-nav-links .is-active {
    color: var(--gold);
  }
}


/* Trusted Professional profiles */

.trusted-professional {
    margin-top: 1.35rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(0, 35, 73, 0.14);
}

.trusted-professional-profile {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    margin-top: 0.8rem;
}

.trusted-professional-photo {
    width: 110px;
    height: 110px;
    flex: 0 0 110px;
    object-fit: cover;
    object-position: center top;
}

.trusted-professional-details {
    min-width: 0;
}

.trusted-professional-details h3 {
    margin-top: 0;
}

@media (max-width: 600px) {
    .trusted-professional-profile {
        display: block;
    }

    .trusted-professional-photo {
        width: 100px;
        height: 100px;
        margin-bottom: 1rem;
    }
}

.title-professional-links {
    margin-top: 0.45rem;
}

.resource-detail-card .title-professional-links .resource-link {
    display: block;
    width: fit-content;
    margin-top: 0.35rem;
}
