/* ============================================================
   BusinessDeals content pages
   Contact, Guides, Policies
============================================================ */

.content-page {
  min-height: 100vh;
  overflow-x: hidden;
  background:
    linear-gradient(90deg, rgba(11,42,91,.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(11,42,91,.035) 1px, transparent 1px),
    radial-gradient(circle at 88% 10%, rgba(200,155,60,.16), transparent 30%),
    #fff;
  background-size: 52px 52px, 52px 52px, auto, auto;
  color: var(--navy);
}

.content-page #contentPage {
  padding-top: var(--header-h);
}

.content-page .nav {
  top: var(--topbar-h);
}

.content-page .nav__inner {
  width: min(100%, 1280px);
  margin: 0 auto;
  padding: 0 28px;
}

.content-page .nav--solid .nav__hamburger span {
  background: var(--navy);
}

.content-kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  color: var(--gold);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.content-kicker::before {
  content: "";
  width: 42px;
  height: 2px;
  border-radius: 999px;
  background: var(--gold);
}

.content-shell {
  max-width: 1160px;
  margin: 0 auto;
  padding: 28px 28px 82px;
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 310px;
  gap: 22px;
  align-items: start;
}

.content-main,
.content-side-card,
.content-card,
.guide-panel,
.contact-form-card {
  border: 1px solid rgba(11,42,91,.1);
  background: rgba(255,255,255,.88);
  box-shadow: 0 22px 60px rgba(11,42,91,.09);
  border-radius: 22px;
}

.content-main {
  padding: 26px;
}

.content-main--flush {
  padding: 0;
  overflow: hidden;
}

.content-side {
  position: sticky;
  top: calc(var(--nav-h) + var(--topbar-h) + 18px);
  display: grid;
  gap: 14px;
}

.content-side-card {
  padding: 18px;
}

.content-side-card h3 {
  margin: 0 0 10px;
  font-size: 1rem;
  color: var(--navy);
}

.content-side-card p {
  margin: 0 0 14px;
  color: var(--slate);
  font-size: .86rem;
  line-height: 1.65;
}

.content-side-card a,
.content-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 16px;
  border-radius: 12px;
  background: var(--navy);
  color: #fff;
  font-size: .84rem;
  font-weight: 800;
  text-decoration: none;
  transition: .22s ease;
}

.content-side-card a:hover,
.content-action:hover {
  transform: translateY(-2px);
  background: #123d7b;
}

.content-action--gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--navy);
}

.content-toc {
  display: grid;
  gap: 8px;
}

.content-toc a {
  min-height: auto;
  justify-content: flex-start;
  background: #f7f9fc;
  color: var(--navy);
  border: 1px solid rgba(11,42,91,.08);
  font-size: .82rem;
}

.content-toc a:hover {
  background: var(--navy);
  color: #fff;
}

.content-toc a.is-active {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
  box-shadow: 0 12px 28px rgba(11,42,91,.16);
}

.policy-section {
  scroll-margin-top: calc(var(--nav-h) + var(--topbar-h) + 22px);
  padding: 0 0 22px;
  margin-bottom: 22px;
  border-bottom: 1px solid rgba(11,42,91,.08);
}

.policy-section:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: 0;
}

.policy-section h2,
.contact-section-title,
.guide-section-title {
  margin: 0 0 14px;
  color: var(--navy);
  font-family: var(--font-display);
  font-size: clamp(1.28rem, 2.2vw, 1.8rem);
  line-height: 1.18;
  letter-spacing: -.02em;
  font-weight: 900;
}

.policy-section h3 {
  margin: 18px 0 8px;
  color: var(--navy);
  font-size: 1rem;
  font-weight: 900;
}

.policy-section p,
.policy-section li,
.guide-text p,
.guide-text li {
  color: var(--slate);
  font-size: .93rem;
  line-height: 1.76;
}

.policy-section p {
  margin: 0 0 12px;
}

.policy-list,
.guide-list {
  margin: 10px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 9px;
}

.policy-list li,
.guide-list li {
  position: relative;
  padding-left: 24px;
}

.policy-list li::before,
.guide-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .67em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 5px rgba(200,155,60,.12);
}

.contact-layout {
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  gap: 22px;
}

.contact-card-list {
  display: grid;
  gap: 10px;
}

.contact-info-card {
  display: grid;
  grid-template-columns: 38px minmax(0,1fr);
  align-items: center;
  gap: 12px;
  min-height: 74px;
  padding: 12px 14px;
  border: 1px solid rgba(11,42,91,.1);
  border-radius: 8px;
  background: #fff;
  transition: .22s ease;
}

.contact-info-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(11,42,91,.08);
}

.contact-info-card span {
  display: block;
  margin-bottom: 3px;
  color: var(--gold);
  font-size: .59rem;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.contact-info-card .contact-info-card__icon {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin: 0;
  border: 1px solid rgba(200,155,60,.28);
  border-radius: 8px;
  color: var(--gold);
  background: rgba(200,155,60,.09);
}

.contact-info-card__icon svg {
  width: 19px;
  height: 19px;
}

.contact-info-card strong,
.contact-info-card a {
  color: var(--navy);
  font-size: .83rem;
  font-weight: 500;
  text-decoration: none;
  line-height: 1.5;
}

.contact-form-card {
  padding: 22px;
}

.contact-map-card {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: 18px;
  margin-top: 22px;
  padding: 18px;
  border: 1px solid rgba(11,42,91,.1);
  border-radius: 22px;
  background: rgba(255,255,255,.9);
  box-shadow: 0 22px 60px rgba(11,42,91,.09);
}

.contact-map-card__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4px 8px;
}

.contact-map-card__copy h2 {
  margin: 0 0 10px;
  color: var(--navy);
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  line-height: 1.12;
}

.contact-map-card__copy p {
  margin: 0 0 16px;
  color: var(--slate);
  font-size: .92rem;
  line-height: 1.7;
}

.contact-map-card__frame {
  min-height: 260px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(11,42,91,.1);
  background: #eef3f8;
}

.contact-map-card__frame iframe {
  width: 100%;
  height: 100%;
  min-height: 260px;
  border: 0;
  display: block;
}

.contact-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 13px;
}

.content-field {
  display: grid;
  gap: 6px;
}

.content-field--wide {
  grid-column: 1 / -1;
}

.content-field label {
  color: var(--navy);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.required-mark {
  color: #D14A40;
  font-weight: 900;
}

.content-field__label-row {
  position: relative;
  display: flex;
  align-items: center;
  gap: 6px;
  width: max-content;
}

.field-help {
  position: relative;
  display: grid;
  place-items: center;
  width: 18px;
  height: 18px;
  border: 1px solid rgba(11,42,91,.2);
  border-radius: 50%;
  color: var(--navy);
  background: #fff;
  cursor: help;
}

.field-help svg {
  width: 12px;
  height: 12px;
}

.field-help::after {
  content: attr(data-tooltip);
  position: absolute;
  left: calc(100% + 8px);
  top: 50%;
  z-index: 20;
  width: min(260px, calc(100vw - 80px));
  padding: 8px 10px;
  border-radius: 7px;
  color: #fff;
  background: var(--navy);
  box-shadow: 0 12px 28px rgba(11,42,91,.2);
  font-size: .68rem;
  font-weight: 600;
  line-height: 1.45;
  text-transform: none;
  letter-spacing: 0;
  opacity: 0;
  pointer-events: none;
  transform: translate(4px,-50%);
  transition: opacity .2s ease, transform .2s ease;
}

.field-help:hover::after,
.field-help:focus-visible::after {
  opacity: 1;
  transform: translate(0,-50%);
}

.content-field input,
.content-field select,
.content-field textarea {
  width: 100%;
  min-height: 44px;
  border: 1px solid rgba(11,42,91,.14);
  border-radius: 12px;
  padding: 10px 13px;
  color: var(--navy);
  font-family: inherit;
  font-size: .9rem;
  font-weight: 700;
  outline: none;
  background: #fff;
  transition: .2s ease;
}

.content-field textarea {
  min-height: 108px;
  resize: vertical;
}

.content-field input:focus,
.content-field select:focus,
.content-field textarea:focus {
  border-color: rgba(200,155,60,.7);
  box-shadow: 0 0 0 4px rgba(200,155,60,.13);
}

.content-field input::placeholder,
.content-field textarea::placeholder {
  color: #8798AA;
  font-weight: 500;
  opacity: 1;
}

.contact-submit {
  background: #D1A440;
  color: #fff;
  transition: background .22s ease, transform .22s ease, box-shadow .22s ease;
}

.contact-submit:hover,
.contact-submit:focus-visible {
  background: #0B2A5B;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(11,42,91,.18);
}

.contact-map-action,
.contact-map-action:hover,
.contact-map-action:focus-visible {
  color: #fff;
}

.purpose-grid {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.purpose-card {
  border: 1px solid rgba(11,42,91,.1);
  background: #f8fafc;
  border-radius: 14px;
  padding: 13px;
  cursor: pointer;
  transition: .22s ease;
}

.purpose-card strong {
  display: block;
  color: var(--navy);
  font-size: .9rem;
}

.purpose-card span {
  display: block;
  margin-top: 3px;
  color: var(--slate);
  font-size: .78rem;
}

.purpose-card.is-active,
.purpose-card:hover {
  background: var(--navy);
  border-color: var(--navy);
  transform: translateY(-2px);
}

.purpose-card.is-active strong,
.purpose-card.is-active span,
.purpose-card:hover strong,
.purpose-card:hover span {
  color: #fff;
}

/* Schedule a Meeting */
.schedule-page {
  padding-top: 26px;
}

.schedule-hero-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px;
  gap: 20px;
  align-items: center;
  margin-bottom: 20px;
  padding: 24px;
  border: 1px solid rgba(11,42,91,.1);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.94), rgba(255,255,255,.82)),
    radial-gradient(circle at 92% 8%, rgba(200,155,60,.2), transparent 34%);
  box-shadow: 0 22px 60px rgba(11,42,91,.09);
  overflow: hidden;
}

.schedule-hero-card h1 {
  margin: 0;
  color: var(--navy);
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.04;
  letter-spacing: -.04em;
  font-weight: 900;
}

.schedule-hero-card h1 em {
  color: var(--gold);
  font-weight: 500;
}

.schedule-hero-card p {
  max-width: 680px;
  margin: 12px 0 0;
  color: var(--slate);
  font-size: .98rem;
  line-height: 1.65;
}

.schedule-call-card {
  display: grid;
  gap: 6px;
  padding: 18px;
  border-radius: 18px;
  background: var(--navy);
  color: #fff;
  text-decoration: none;
  box-shadow: 0 20px 42px rgba(11,42,91,.18);
  transition: .22s ease;
}

.schedule-call-card:hover {
  transform: translateY(-3px);
}

.schedule-call-card span {
  color: var(--gold-light);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.schedule-call-card strong {
  font-size: 1.08rem;
  line-height: 1.2;
}

.schedule-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 310px;
  gap: 20px;
  align-items: start;
}

.schedule-form-card,
.schedule-side-card {
  border: 1px solid rgba(11,42,91,.1);
  border-radius: 22px;
  background: rgba(255,255,255,.9);
  box-shadow: 0 22px 60px rgba(11,42,91,.09);
}

.schedule-form-card {
  padding: 22px;
}

.schedule-form-head {
  margin-bottom: 14px;
}

.schedule-form-head h2,
.schedule-section h3,
.schedule-side-card h2 {
  margin: 0;
  color: var(--navy);
  font-family: var(--font-display);
  font-weight: 900;
  letter-spacing: -.02em;
}

.schedule-form-head h2 {
  font-size: clamp(1.35rem, 2vw, 1.85rem);
}

.schedule-form-grid,
.schedule-info-grid {
  display: grid;
  gap: 12px;
}

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

.schedule-info-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.schedule-phone-field {
  min-width: 0;
}

.schedule-phone-input {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  border: 1px solid rgba(11,42,91,.14);
  border-radius: 12px;
  background: #fff;
  overflow: hidden;
  transition: .2s ease;
}

.schedule-phone-input:focus-within {
  border-color: rgba(200,155,60,.7);
  box-shadow: 0 0 0 4px rgba(200,155,60,.13);
}

.schedule-phone-input button {
  min-height: 44px;
  padding: 0 10px;
  background: #f5f7fa;
  color: var(--navy);
  font-size: .82rem;
  font-weight: 900;
  border-right: 1px solid rgba(11,42,91,.1);
}

.schedule-phone-input input {
  min-width: 0;
  min-height: 44px;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.schedule-section {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(11,42,91,.08);
}

.schedule-section h3 {
  margin-bottom: 12px;
  font-size: 1rem;
}

.schedule-purpose-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.schedule-purpose {
  min-height: 92px;
  padding: 13px;
  border: 1px solid rgba(11,42,91,.1);
  border-radius: 16px;
  background: #f8fafc;
  text-align: left;
  transition: .22s ease;
}

.schedule-purpose strong,
.schedule-purpose span {
  display: block;
}

.schedule-purpose strong {
  color: var(--navy);
  font-size: .86rem;
  line-height: 1.25;
}

.schedule-purpose span {
  margin-top: 5px;
  color: var(--slate);
  font-size: .74rem;
  line-height: 1.45;
}

.schedule-purpose:hover,
.schedule-purpose.is-active {
  background: var(--navy);
  border-color: var(--navy);
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(11,42,91,.16);
}

.schedule-purpose:hover strong,
.schedule-purpose:hover span,
.schedule-purpose.is-active strong,
.schedule-purpose.is-active span {
  color: #fff;
}

.schedule-info-box {
  min-height: 72px;
  padding: 12px;
  border: 1px solid rgba(11,42,91,.1);
  border-radius: 14px;
  background: #f8fafc;
}

.schedule-info-box span {
  display: block;
  margin-bottom: 5px;
  color: var(--gold);
  font-size: .66rem;
  font-weight: 900;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.schedule-info-box strong {
  display: block;
  color: var(--navy);
  font-size: .95rem;
  line-height: 1.25;
}

.schedule-info-box small {
  display: block;
  margin-top: 3px;
  color: var(--slate);
  font-size: .72rem;
  line-height: 1.35;
}

.schedule-payment-note {
  margin: 12px 0 0;
  padding: 11px 13px;
  border-radius: 12px;
  background: var(--gold-pale);
  color: var(--navy);
  font-size: .82rem;
  font-weight: 800;
  line-height: 1.45;
}

.schedule-actions {
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr);
  gap: 12px;
  margin-top: 18px;
}

.schedule-btn {
  min-height: 46px;
  border-radius: 13px;
  font-size: .9rem;
  font-weight: 900;
  transition: .22s ease;
}

.schedule-btn:hover {
  transform: translateY(-2px);
}

.schedule-btn--back {
  background: #fff;
  border: 1px solid rgba(11,42,91,.14);
  color: var(--navy);
}

.schedule-btn--submit {
  background: var(--navy);
  color: #fff;
  box-shadow: 0 16px 30px rgba(11,42,91,.16);
}

.schedule-side {
  position: sticky;
  top: calc(var(--nav-h) + var(--topbar-h) + 18px);
  display: grid;
  gap: 14px;
}

.schedule-side-card {
  padding: 18px;
}

.schedule-side-card--blue {
  color: #fff;
  background:
    linear-gradient(145deg, rgba(255,255,255,.12), rgba(255,255,255,0)),
    linear-gradient(135deg, var(--navy), #184c8b);
}

.schedule-side-card--blue span {
  color: var(--gold-light);
  font-size: .7rem;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.schedule-side-card--blue h2 {
  margin-top: 8px;
  color: #fff;
  font-size: 1.25rem;
  line-height: 1.2;
}

.schedule-side-card--blue a {
  display: inline-flex;
  justify-content: center;
  width: 100%;
  margin-top: 16px;
  min-height: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--navy);
  font-size: .86rem;
  font-weight: 900;
  text-decoration: none;
}

.schedule-side-card h2 {
  margin-bottom: 12px;
  font-size: 1.12rem;
}

.schedule-faq-list {
  display: grid;
  gap: 9px;
}

.schedule-faq {
  border: 1px solid rgba(11,42,91,.1);
  border-radius: 14px;
  background: #f8fafc;
  overflow: hidden;
}

.schedule-faq summary {
  position: relative;
  list-style: none;
  cursor: pointer;
  padding: 12px 34px 12px 13px;
  color: var(--navy);
  font-size: .84rem;
  font-weight: 900;
  line-height: 1.35;
}

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

.schedule-faq summary::after {
  content: "+";
  position: absolute;
  right: 13px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold);
  font-weight: 900;
}

.schedule-faq[open] summary::after {
  content: "-";
}

.schedule-faq p {
  margin: 0;
  padding: 0 13px 13px;
  color: var(--slate);
  font-size: .8rem;
  line-height: 1.55;
}

/* Schedule a Meeting - advisory booking page */
.schedule-page--advisory {
  width: min(1180px, calc(100% - 32px));
  padding-top: 28px;
  padding-bottom: 70px;
}

.schedule-advisory-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 18px;
  align-items: center;
  margin-bottom: 18px;
  padding: 22px;
  border: 1px solid rgba(11,42,91,.1);
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.96), rgba(255,255,255,.84)),
    radial-gradient(circle at 88% 12%, rgba(200,155,60,.18), transparent 35%),
    linear-gradient(rgba(11,42,91,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(11,42,91,.035) 1px, transparent 1px);
  background-size: auto, auto, 34px 34px, 34px 34px;
  box-shadow: 0 20px 56px rgba(11,42,91,.08);
}

.schedule-advisory-hero h1 {
  margin: 8px 0 0;
  color: var(--navy);
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -.035em;
}

.schedule-advisory-hero h1 em {
  color: var(--gold);
  font-weight: 500;
}

.schedule-assist-card {
  padding: 16px;
  border-radius: 18px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.14), rgba(255,255,255,0)),
    linear-gradient(135deg, var(--navy), #194d87);
  color: #fff;
  box-shadow: 0 16px 34px rgba(11,42,91,.16);
}

.schedule-assist-card span {
  display: block;
  color: var(--gold-light);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.schedule-assist-card p {
  margin: 8px 0 10px;
  color: rgba(255,255,255,.78);
  font-size: .86rem;
  line-height: 1.5;
}

.schedule-assist-card a {
  display: inline-flex;
  align-items: center;
  color: #fff;
  font-size: 1.05rem;
  font-weight: 900;
  text-decoration: none;
}

.schedule-advisory-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 18px;
  align-items: start;
}

.schedule-booking-card,
.schedule-side-card,
.schedule-faq-section {
  border: 1px solid rgba(11,42,91,.1);
  border-radius: 22px;
  background: rgba(255,255,255,.94);
  box-shadow: 0 22px 58px rgba(11,42,91,.08);
}

.schedule-booking-card {
  padding: 20px;
}

.schedule-booking-head {
  margin-bottom: 14px;
}

.schedule-booking-head h2,
.schedule-step-title h3,
.schedule-side-card h2,
.schedule-section-head h2 {
  margin: 0;
  color: var(--navy);
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -.02em;
}

.schedule-booking-head h2 {
  margin-top: 7px;
  font-size: clamp(1.35rem, 2.5vw, 1.95rem);
  line-height: 1.15;
}

.schedule-step {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(11,42,91,.08);
}

.schedule-step-title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.schedule-step-title span {
  display: inline-flex;
  width: 32px;
  height: 32px;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--navy);
  font-size: .8rem;
  font-weight: 900;
}

.schedule-step-title h3 {
  font-size: 1rem;
}

.schedule-booking-card .content-field {
  gap: 5px;
}

.schedule-booking-card .content-field label {
  font-size: .68rem;
  letter-spacing: .11em;
}

.schedule-booking-card .content-field input,
.schedule-booking-card .content-field select,
.schedule-booking-card .content-field textarea {
  min-height: 42px;
  border-radius: 12px;
  padding: 9px 12px;
  font-size: .84rem;
  font-weight: 700;
}

.schedule-booking-card .content-field textarea {
  min-height: 86px;
}

.schedule-form-grid--personal {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 11px;
}

.schedule-form-grid--meeting {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 11px;
}

.schedule-fee-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-top: 12px;
}

.schedule-fee-strip p {
  margin: 0;
  padding: 10px 12px;
  border: 1px solid rgba(200,155,60,.2);
  border-radius: 12px;
  background: rgba(251,245,226,.55);
  color: var(--slate);
  font-size: .73rem;
  line-height: 1.45;
}

.schedule-payment-box {
  margin-top: 16px;
  padding: 16px;
  border: 1px solid rgba(200,155,60,.28);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(251,245,226,.78), rgba(255,255,255,.95)),
    radial-gradient(circle at 92% 8%, rgba(200,155,60,.18), transparent 34%);
}

.schedule-payment-content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, .82fr);
  gap: 14px;
  align-items: center;
}

.schedule-payment-content span,
.schedule-secure-note {
  color: var(--slate);
  font-size: .78rem;
  line-height: 1.45;
}

.schedule-payment-content strong {
  display: block;
  margin: 4px 0;
  color: var(--navy);
  font-size: clamp(1.75rem, 3.5vw, 2.45rem);
  line-height: 1;
  font-weight: 900;
}

.schedule-payment-content p {
  margin: 0;
  color: var(--slate);
  font-size: .8rem;
  line-height: 1.5;
}

.schedule-confirm-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px;
  border-radius: 14px;
  background: #fff;
  color: var(--navy);
  font-size: .8rem;
  font-weight: 800;
  line-height: 1.45;
  box-shadow: inset 0 0 0 1px rgba(11,42,91,.1);
}

.schedule-confirm-check input {
  width: 16px;
  height: 16px;
  margin-top: 2px;
  accent-color: var(--gold);
  flex: 0 0 auto;
}

.schedule-pay-btn {
  width: 100%;
  min-height: 44px;
  margin-top: 13px;
  border-radius: 13px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--navy);
  font-family: inherit;
  font-size: .88rem;
  font-weight: 900;
  box-shadow: 0 15px 30px rgba(200,155,60,.2);
  transition: .22s ease;
}

.schedule-pay-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(200,155,60,.26);
}

.schedule-secure-note {
  margin: 9px 0 0;
  text-align: center;
  font-weight: 800;
}

.schedule-advisory-side {
  position: sticky;
  top: calc(var(--header-h) + 18px);
  display: grid;
  gap: 14px;
}

.schedule-advisory-side .schedule-side-card {
  padding: 18px;
}

.schedule-expert-card {
  background:
    linear-gradient(145deg, rgba(255,255,255,.12), rgba(255,255,255,0)),
    linear-gradient(135deg, var(--navy), #1b4f8b);
  color: #fff;
}

.schedule-expert-card h2 {
  margin-top: 8px;
  color: #fff;
  font-size: 1.28rem;
}

.schedule-expert-card ul {
  display: grid;
  gap: 9px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.schedule-expert-card li {
  position: relative;
  padding-left: 24px;
  color: rgba(255,255,255,.86);
  font-size: .84rem;
  line-height: 1.45;
}

.schedule-expert-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .35em;
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: var(--gold);
  box-shadow: inset 0 0 0 4px rgba(255,255,255,.28);
}

.schedule-want-card h2 {
  margin-bottom: 12px;
  font-size: 1.08rem;
}

.schedule-want-list {
  display: grid;
  gap: 9px;
}

.schedule-want-list a {
  display: grid;
  gap: 3px;
  padding: 12px;
  border: 1px solid rgba(11,42,91,.1);
  border-radius: 14px;
  background: #f8fafc;
  text-decoration: none;
  transition: .22s ease;
}

.schedule-want-list a:hover {
  transform: translateY(-2px);
  border-color: rgba(200,155,60,.38);
  background: #fff;
  box-shadow: 0 12px 24px rgba(11,42,91,.08);
}

.schedule-want-list strong {
  color: var(--navy);
  font-size: .88rem;
}

.schedule-want-list span {
  color: var(--slate);
  font-size: .76rem;
  line-height: 1.4;
}

.schedule-faq-section {
  margin-top: 18px;
  padding: 20px;
}

.schedule-section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 13px;
}

.schedule-section-head h2 {
  margin-top: 7px;
  font-size: clamp(1.3rem, 2.5vw, 1.9rem);
  line-height: 1.15;
}

.schedule-faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.guide-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 18px;
  align-items: stretch;
  margin-bottom: 22px;
}

.guide-intro .content-card,
.guide-stat-card {
  padding: 22px;
}

.guide-stat-card {
  background: linear-gradient(135deg, var(--navy), #173f78);
  color: #fff;
}

.guide-stat-card strong {
  display: block;
  color: var(--gold-light);
  font-size: 2.1rem;
  line-height: 1;
}

.guide-stat-card span {
  display: block;
  margin-top: 8px;
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.guide-tabs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin: 0 0 16px;
}

.guide-tab {
  border: 1px solid rgba(11,42,91,.12);
  border-radius: 14px;
  background: #fff;
  color: var(--navy);
  padding: 11px 12px;
  font-family: inherit;
  font-size: .82rem;
  font-weight: 900;
  cursor: pointer;
  transition: .22s ease;
}

.guide-tab:hover,
.guide-tab.is-active {
  background: var(--navy);
  color: #fff;
  transform: translateY(-2px);
}

.guide-panel {
  display: none;
  padding: 24px;
}

.guide-panel.is-active {
  display: block;
  animation: contentFade .26s ease both;
}

.guide-panel h2 {
  margin: 0 0 12px;
  color: var(--navy);
  font-size: clamp(1.35rem, 2.6vw, 2rem);
  line-height: 1.18;
}

.guide-steps {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.guide-step {
  border: 1px solid rgba(11,42,91,.1);
  border-radius: 16px;
  background: #f9fbfd;
  padding: 16px;
}

.guide-step h3 {
  margin: 0 0 8px;
  color: var(--navy);
  font-size: 1rem;
}

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

.mini-card {
  padding: 16px;
  border: 1px solid rgba(11,42,91,.1);
  border-radius: 16px;
  background: #fff;
}

.mini-card strong {
  display: block;
  color: var(--navy);
  margin-bottom: 7px;
}

.mini-card p {
  margin: 0;
  color: var(--slate);
  font-size: .86rem;
  line-height: 1.65;
}

.blog-shell {
  padding-top: 30px;
}

.news-shell {
  padding-top: 26px;
}

.news-page-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 20px;
  margin-bottom: 18px;
  padding: 22px 24px;
  border: 1px solid rgba(11,42,91,.09);
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.96), rgba(255,255,255,.82)),
    radial-gradient(circle at 96% 0%, rgba(200,155,60,.16), transparent 36%);
  box-shadow: 0 22px 58px rgba(11,42,91,.08);
}

.news-page-head h1 {
  margin: 0;
  color: var(--navy);
  font-family: var(--font-display);
  font-size: clamp(2.15rem, 5vw, 4.1rem);
  line-height: .98;
  letter-spacing: 0;
}

.news-page-head h1 em {
  color: var(--gold);
  font-family: var(--font-serif);
  font-weight: 600;
}

.news-page-head p {
  max-width: 720px;
  margin: 12px 0 0;
  color: var(--slate);
  font-size: .96rem;
  line-height: 1.7;
}

.news-page-head__meta {
  display: grid;
  justify-items: center;
  min-width: 142px;
  padding: 16px 18px;
  border: 1px solid rgba(11,42,91,.11);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 16px 34px rgba(11,42,91,.08);
}

.news-page-head__meta strong {
  color: var(--navy);
  font-size: 2rem;
  line-height: 1;
}

.news-page-head__meta span {
  margin-top: 6px;
  color: var(--slate);
  font-size: .75rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.news-featured {
  grid-template-columns: minmax(260px, .74fr) minmax(0, 1fr);
  border-radius: 20px;
}

.news-featured .blog-featured__media,
.news-featured .blog-featured__media img {
  min-height: 250px;
}

.news-featured .blog-featured__body h2 {
  font-size: clamp(1.5rem, 2.15vw, 2.08rem);
}

.news-brief-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 0 0 16px;
}

.news-brief-card {
  position: relative;
  overflow: hidden;
  min-height: 120px;
  padding: 18px;
  border: 1px solid rgba(11,42,91,.1);
  border-radius: 18px;
  background: rgba(255,255,255,.9);
  box-shadow: 0 18px 42px rgba(11,42,91,.07);
  color: var(--navy);
  text-decoration: none;
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.news-brief-card::after {
  content: "";
  position: absolute;
  right: -34px;
  bottom: -48px;
  width: 130px;
  height: 130px;
  border: 1px solid rgba(200,155,60,.18);
  border-radius: 36px;
  transform: rotate(10deg);
}

.news-brief-card:hover {
  transform: translateY(-3px);
  border-color: rgba(200,155,60,.42);
  box-shadow: 0 26px 54px rgba(11,42,91,.12);
}

.news-brief-card span {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--gold);
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.news-brief-card strong {
  position: relative;
  z-index: 1;
  display: block;
  font-size: .98rem;
  line-height: 1.35;
}

.news-brief-card time {
  display: block;
  margin-top: 12px;
  color: var(--slate);
  font-size: .76rem;
  font-weight: 800;
}

.news-filter-card {
  grid-template-columns: 170px minmax(0, 1fr) minmax(220px, 300px);
}

.news-search-card {
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.news-search-card input {
  min-height: 40px;
  background: #fff;
}

.blog-card__excerpt {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 10px 0 0;
  color: var(--slate);
  font-size: .82rem;
  line-height: 1.55;
}



.blog-page-head p {
  max-width: 760px;
  margin: 12px 0 0;
  color: var(--slate);
  font-size: .96rem;
  line-height: 1.7;
}

.blog-search-card {
  display: grid;
  gap: 8px;
  padding: 14px;
  border: 1px solid rgba(11,42,91,.11);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 14px 32px rgba(11,42,91,.08);
}

.blog-search-card label {
  color: var(--gold);
  font-size: .7rem;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.blog-search-card input {
  min-height: 42px;
  border: 1px solid rgba(11,42,91,.12);
  border-radius: 12px;
  padding: 10px 12px;
  color: var(--navy);
  font: inherit;
  font-weight: 700;
  outline: none;
}

.blog-search-card input:focus {
  border-color: rgba(200,155,60,.7);
  box-shadow: 0 0 0 4px rgba(200,155,60,.13);
}

.blog-featured {
  display: grid;
  grid-template-columns: minmax(260px, .88fr) minmax(0, 1fr);
  gap: 0;
  overflow: hidden;
  margin-bottom: 18px;
  border: 1px solid rgba(11,42,91,.1);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 24px 64px rgba(11,42,91,.1);
  animation: contentFade .45s ease both;
}

.blog-featured__media {
  position: relative;
  min-height: 285px;
  overflow: hidden;
  background: #eef3f8;
}

.blog-featured__media img {
  width: 100%;
  height: 100%;
  min-height: 285px;
  object-fit: cover;
  display: block;
  transition: transform .45s ease;
}

.blog-featured:hover .blog-featured__media img {
  transform: scale(1.035);
}

.blog-featured__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 48%, rgba(6,24,55,.68));
}

.blog-featured__media span {
  position: absolute;
  left: 16px;
  bottom: 16px;
  z-index: 1;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.94);
  color: var(--navy);
  font-size: .72rem;
  font-weight: 900;
  box-shadow: 0 14px 30px rgba(0,0,0,.16);
}

.blog-featured__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(22px, 3vw, 36px);
}

.blog-featured__eyebrow,
.blog-featured__body time {
  color: var(--gold);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.blog-featured__body time {
  margin-top: 10px;
  color: var(--slate);
  letter-spacing: .08em;
}

.blog-featured__body h2 {
  max-width: 780px;
  margin: 12px 0;
  color: var(--navy);
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 2.6vw, 2.45rem);
  line-height: 1.12;
}

.blog-featured__body h2 a,
.blog-featured__cta {
  color: inherit;
  text-decoration: none;
}

.blog-featured__body p {
  max-width: 640px;
  margin: 0;
  color: var(--slate);
  font-size: .96rem;
  line-height: 1.7;
}

.blog-featured__cta {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  width: max-content;
  margin-top: 18px;
  padding: 11px 16px;
  border-radius: 999px;
  background: var(--navy);
  color: #fff;
  font-size: .84rem;
  font-weight: 900;
  box-shadow: 0 16px 34px rgba(11,42,91,.18);
  transition: transform .22s ease, background .22s ease;
}

.blog-featured__cta:hover {
  transform: translateY(-2px);
  background: #081f47;
}

.blog-layout {
  display: block;
}

.blog-filter-card,
.blog-results {
  border: 1px solid rgba(11,42,91,.1);
  border-radius: 20px;
  background: rgba(255,255,255,.9);
  box-shadow: 0 20px 52px rgba(11,42,91,.07);
}

.blog-filter-card {
  padding: 14px;
  margin-bottom: 16px;
}

.blog-filter-card--inline {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
}

.blog-filter-card__head h2 {
  margin: 0;
  color: var(--navy);
  font-size: 1rem;
}

.blog-filter-card__head span {
  display: block;
  margin-top: 4px;
  color: var(--slate);
  font-size: .78rem;
  font-weight: 700;
}

.blog-category-list {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.blog-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  width: auto;
  border: 1px solid rgba(11,42,91,.09);
  border-radius: 999px;
  background: #f8fafc;
  padding: 9px 11px;
  color: var(--navy);
  font: inherit;
  font-size: .78rem;
  font-weight: 900;
  text-align: left;
  cursor: pointer;
  min-width: 0;
  overflow: hidden;
  transition: .22s ease;
}

.blog-category strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 26px;
  min-height: 22px;
  border-radius: 999px;
  background: #fff;
  color: var(--slate);
  font-size: .72rem;
  flex: 0 0 auto;
  margin-left: auto;
}

.blog-category:hover,
.blog-category.is-active {
  background: var(--navy);
  color: #fff;
  transform: translateY(-1px);
}

.blog-category:hover strong,
.blog-category.is-active strong {
  color: var(--navy);
}

.blog-results {
  padding: 16px;
}

.blog-results__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
  color: var(--slate);
  font-size: .86rem;
}

.blog-results__bar p {
  margin: 0;
}

.blog-results__bar strong,
.blog-results__bar span {
  color: var(--navy);
  font-weight: 900;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 15px;
}

.blog-card {
  overflow: hidden;
  border: 1px solid rgba(11,42,91,.1);
  border-radius: 17px;
  background: #fff;
  box-shadow: 0 16px 36px rgba(11,42,91,.07);
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
  animation: contentFade .42s ease both;
}

.blog-card:hover {
  transform: translateY(-4px);
  border-color: rgba(200,155,60,.4);
  box-shadow: 0 26px 56px rgba(11,42,91,.12);
}

.blog-card__media {
  position: relative;
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #edf2f7;
}

.blog-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .36s ease;
}

.blog-card:hover .blog-card__media img {
  transform: scale(1.04);
}

.blog-card__media span {
  position: absolute;
  left: 12px;
  bottom: 12px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.92);
  color: var(--navy);
  font-size: .68rem;
  font-weight: 900;
  box-shadow: 0 10px 26px rgba(0,0,0,.12);
}

.blog-card__body {
  padding: 15px;
}

.blog-card__body time {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--gold);
  font-size: .7rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.blog-card__body h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(.98rem, 1.35vw, 1.14rem);
  line-height: 1.28;
}

.blog-card__body h2 a {
  color: inherit;
  text-decoration: none;
}

.blog-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  color: var(--navy);
  font-size: .82rem;
  font-weight: 900;
  text-decoration: none;
}

.blog-card__link span {
  color: var(--gold);
}

.blog-empty {
  grid-column: 1 / -1;
  padding: 24px;
  border-radius: 16px;
  background: #f8fafc;
  color: var(--slate);
  font-weight: 800;
}

.blog-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.blog-pagination button {
  min-width: 40px;
  min-height: 38px;
  border: 1px solid rgba(11,42,91,.14);
  border-radius: 999px;
  background: #fff;
  color: var(--navy);
  font: inherit;
  font-size: .8rem;
  font-weight: 900;
  cursor: pointer;
  transition: .2s ease;
}

.blog-pagination button:hover:not(:disabled),
.blog-pagination button.is-active {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
}

.blog-pagination button:disabled {
  opacity: .45;
  cursor: not-allowed;
}

@keyframes contentFade {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 980px) {
  .content-page .nav__inner {
    position: relative;
    padding-right: 66px;
  }

  .content-page .nav__actions {
    display: none !important;
  }

  .content-page #hamburger.nav__hamburger {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: fixed !important;
    top: calc(var(--topbar-h) + 36px) !important;
    right: 14px !important;
    width: 38px;
    height: 38px;
    margin-left: auto;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(11,42,91,.14);
    border-radius: 12px;
    background: rgba(255,255,255,.86);
    box-shadow: 0 10px 24px rgba(11,42,91,.1);
    transform: translateY(-50%);
    color: var(--navy);
    pointer-events: auto;
    z-index: 1001;
  }

  .content-page #hamburger.nav__hamburger::before {
    content: "";
  }

  .content-page #hamburger.nav__hamburger b {
    display: block !important;
    color: var(--navy);
    font-size: 1.2rem;
    font-weight: 900;
    line-height: 1;
    font-style: normal;
  }

  .content-page #hamburger.nav__hamburger span {
    display: none;
  }

  .content-page .nav__links.is-open,
  .content-page .nav__links.open {
    top: var(--header-h) !important;
    height: calc(100vh - var(--header-h));
  }

  .content-grid,
  .contact-layout,
  .guide-intro,
  .contact-map-card,
  .blog-page-head__grid,
  .schedule-hero-card,
  .schedule-layout,
  .schedule-advisory-hero,
  .schedule-advisory-grid {
    grid-template-columns: 1fr;
  }

  .content-side,
  .blog-filter-card,
  .schedule-side,
  .schedule-advisory-side {
    position: static;
  }

  .schedule-form-grid,
  .schedule-info-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .schedule-form-grid--personal,
  .schedule-form-grid--meeting,
  .schedule-payment-content {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .blog-featured,
  .blog-filter-card--inline {
    grid-template-columns: 1fr;
  }

  .news-page-head,
  .news-filter-card {
    grid-template-columns: 1fr;
  }

  .news-page-head {
    align-items: start;
  }

  .news-page-head__meta {
    justify-items: start;
    width: 100%;
  }

  .news-brief-grid {
    grid-template-columns: 1fr;
  }

  .blog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .blog-category-list {
    display: flex;
  }
}

@media (max-width: 720px) {
  .content-page #contentPage {
    overflow-x: hidden;
  }

  .content-page .nav__inner {
    position: relative;
    padding: 0 14px;
    gap: 10px;
  }

  .content-page .nav__actions .btn--gold {
    display: none;
  }

  .content-page .site-topbar__inner {
    padding: 0 12px;
    gap: 8px;
  }

  .content-page .site-topbar__socials,
  .content-page .site-topbar__links {
    gap: 10px;
  }

  .content-page .site-topbar__links a {
    font-size: 0;
    gap: 0;
  }

  .content-page .site-topbar__links a svg {
    width: 15px;
    height: 15px;
  }

  .content-shell {
    width: 100%;
    max-width: 100%;
    padding: 20px 12px 58px;
  }

  .schedule-page {
    padding-top: 18px;
  }

  .schedule-page--advisory {
    width: 100%;
    max-width: 100%;
    padding-top: 18px;
    padding-left: 12px;
    padding-right: 12px;
  }

  .schedule-hero-card,
  .schedule-form-card,
  .schedule-side-card,
  .schedule-advisory-hero,
  .schedule-booking-card,
  .schedule-faq-section {
    padding: 16px;
    border-radius: 18px;
  }

  .schedule-hero-card h1 {
    font-size: 1.78rem;
    letter-spacing: -.03em;
  }

  .schedule-advisory-hero h1 {
    font-size: 1.9rem;
  }

  .schedule-hero-card p {
    font-size: .9rem;
  }

  .schedule-form-grid,
  .schedule-info-grid,
  .schedule-purpose-grid,
  .schedule-actions,
  .schedule-form-grid--personal,
  .schedule-form-grid--meeting,
  .schedule-payment-content,
  .schedule-fee-strip,
  .schedule-faq-grid {
    grid-template-columns: 1fr;
  }

  .schedule-section-head {
    display: block;
  }

  .schedule-assist-card,
  .schedule-advisory-side .schedule-side-card {
    padding: 15px;
    border-radius: 16px;
  }

  .schedule-purpose {
    min-height: auto;
  }

  .schedule-phone-input {
    grid-template-columns: 104px minmax(0, 1fr);
  }

  .schedule-actions {
    gap: 10px;
  }

  .blog-page-head,
  .blog-filter-card,
  .blog-results,
  .blog-featured,
  .news-page-head {
    width: 100%;
    max-width: calc(100vw - 24px);
    overflow: hidden;
    padding: 14px;
    border-radius: 18px;
  }

  .blog-page-head__grid {
    grid-template-columns: minmax(0, 1fr) !important;
  }

  .blog-page-head h1,
  .blog-page-head p,
  .blog-category {
    overflow-wrap: anywhere;
    word-break: normal;
  }

  .blog-page-head h1 {
    max-width: calc(100vw - 56px);
    font-size: 1.72rem;
    line-height: 1.08;
  }

  .blog-results__bar {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .blog-grid,
  .blog-category-list {
    grid-template-columns: 1fr;
  }

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

  .blog-featured__media,
  .blog-featured__media img {
    min-height: 210px;
  }

  .news-page-head h1 {
    font-size: clamp(2rem, 12vw, 3rem);
  }

  .news-featured .blog-featured__media,
  .news-featured .blog-featured__media img {
    min-height: 210px;
  }

  .blog-featured__body {
    padding: 18px;
  }

  .blog-featured__body h2 {
    font-size: 1.45rem;
  }

  .blog-featured__cta {
    width: 100%;
    justify-content: center;
  }

  .blog-category {
    gap: 8px;
    padding: 10px;
  }

  .blog-category strong {
    display: none;
  }

  .guide-panel h2,
  .policy-section h2,
  .contact-section-title,
  .guide-section-title {
    max-width: 100%;
    overflow-wrap: anywhere;
    word-break: normal;
  }

  .policy-section p,
  .policy-section li,
  .guide-text p,
  .guide-text li {
    font-size: .9rem;
    line-height: 1.66;
  }

  .content-main,
  .contact-form-card,
  .guide-panel,
  .contact-map-card {
    padding: 18px;
    border-radius: 18px;
  }

  .contact-map-card__frame,
  .contact-map-card__frame iframe {
    min-height: 220px;
  }

  .contact-form-grid,
  .purpose-grid,
  .content-mini-grid,
  .guide-tabs {
    grid-template-columns: 1fr;
  }

  .content-field--wide {
    grid-column: auto;
  }
}
