@import url("https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,500;600;700&family=Manrope:wght@400;500;600;700;800&display=swap");

:root {
  --bg: #f4efe6;
  --bg-soft: #fbf8f3;
  --surface: #ffffff;
  --surface-alt: #f1e8dc;
  --surface-strong: #e3d5c1;
  --ink: #18212b;
  --ink-soft: #5b6572;
  --ink-inverse: #f7f3ed;
  --line: #ddd3c4;
  --line-strong: #c5b59d;
  --accent: #8a6131;
  --accent-deep: #6d471f;
  --accent-soft: #e7d2ae;
  --deep: #16202a;
  --deep-2: #203040;
  --shadow: 0 24px 60px rgba(20, 27, 35, 0.08);
  --shadow-strong: 0 32px 72px rgba(20, 27, 35, 0.16);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --max-width: 1180px;
  --gutter: clamp(1.1rem, 2.4vw, 1.8rem);
}

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

html {
  scroll-behavior: smooth;
}

body.site-refresh {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "Manrope", Arial, sans-serif;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}

body.site-refresh img,
body.site-refresh svg {
  display: block;
  max-width: 100%;
}

body.site-refresh a {
  color: inherit;
  text-decoration: none;
}

body.site-refresh button,
body.site-refresh .button {
  cursor: pointer;
  font: inherit;
}

body.site-refresh [data-shared-header],
body.site-refresh [data-shared-footer] {
  display: block;
  width: 100%;
}

body.site-refresh [data-shared-header="/assets/fragments/site-header.html"] {
  min-height: 80px;
  background: rgba(12, 17, 22, 0.78);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

body.site-refresh [data-shared-footer="/assets/fragments/site-footer.html"] {
  min-height: 16rem;
  background: #111921;
}

.shell {
  width: min(var(--max-width), calc(100% - (2 * var(--gutter))));
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  top: -4rem;
  left: 1rem;
  z-index: 1000;
  padding: 0.8rem 1rem;
  border-radius: 999px;
  background: var(--accent);
  color: var(--ink-inverse);
  font-weight: 800;
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  background: rgba(248, 244, 237, 0.9);
  border-bottom: 1px solid rgba(24, 33, 43, 0.08);
}

.site-header__row {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  min-height: 80px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0;
  min-width: 0;
}

.brand img {
  width: clamp(10.5rem, 18vw, 14rem);
  height: auto;
  border-radius: 0;
  object-fit: contain;
  background: transparent;
}

.brand-copy {
  display: none;
  gap: 0.08rem;
  min-width: 0;
}

.brand-kicker {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}

.brand-name {
  font-family: "Fraunces", Georgia, serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.nav-toggle {
  display: none;
  margin-left: auto;
  align-items: center;
  gap: 0.68rem;
  min-height: 2.9rem;
  padding: 0.7rem 0.95rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  box-shadow: 0 10px 24px rgba(20, 27, 35, 0.08);
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.nav-toggle:hover,
.nav-toggle:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(138, 97, 49, 0.36);
  box-shadow: 0 14px 30px rgba(20, 27, 35, 0.14);
}

.nav-toggle__icon {
  position: relative;
  display: inline-grid;
  gap: 0.22rem;
  width: 1.05rem;
}

.nav-toggle__icon span {
  display: block;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__icon span:nth-child(1) {
  transform: translateY(4px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__icon span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__icon span:nth-child(3) {
  transform: translateY(-4px) rotate(-45deg);
}

.nav-toggle__label {
  line-height: 1;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__label {
  display: none;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__icon {
  display: none;
}

.nav-toggle[aria-expanded="true"]::after {
  content: "Close";
  line-height: 1;
}

.site-nav {
  flex: 1 1 auto;
  margin-left: auto;
}

.nav-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.18rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.7rem;
  padding: 0.68rem 0.72rem;
  border-radius: 16px;
  color: var(--ink-soft);
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.1;
  white-space: nowrap;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.nav-item--has-submenu > .nav-link {
  position: relative;
}

.nav-link:hover,
.nav-link:focus-visible,
.nav-link.current {
  background: rgba(231, 210, 174, 0.82);
  color: var(--accent-deep);
}

.nav-submenu {
  position: absolute;
  top: calc(100% - 0.1rem);
  left: 0;
  z-index: 30;
  display: grid;
  gap: 0.28rem;
  min-width: 21rem;
  margin: 0;
  padding: 0.72rem;
  list-style: none;
  border-radius: 20px;
  border: 1px solid rgba(215, 185, 139, 0.2);
  background: linear-gradient(180deg, rgba(20, 29, 38, 0.99) 0%, rgba(13, 19, 26, 0.99) 100%);
  box-shadow: 0 28px 54px rgba(4, 8, 13, 0.42);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(0.5rem);
  transition: opacity 180ms ease, transform 180ms ease, visibility 0s linear 180ms;
}

.nav-submenu::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -0.8rem;
  height: 0.9rem;
}

.nav-item--has-submenu:hover .nav-submenu,
.nav-item--has-submenu:focus-within .nav-submenu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
  transition: opacity 180ms ease, transform 180ms ease, visibility 0s linear 0s;
}

.nav-item--has-submenu:hover > .nav-link,
.nav-item--has-submenu:focus-within > .nav-link {
  background: var(--accent-soft);
  color: var(--accent-deep);
}

.nav-sublink {
  display: block;
  padding: 0.8rem 0.92rem;
  border-radius: 14px;
  color: rgba(247, 243, 237, 0.96);
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.01em;
}

.nav-sublink:hover,
.nav-sublink:focus-visible,
.nav-sublink.current {
  background: rgba(215, 185, 139, 0.16);
  color: #ffffff;
}

.site-header__cta {
  margin-left: 0.8rem;
  padding-inline: 1rem;
  min-height: 2.8rem;
  font-size: 0.9rem;
  white-space: nowrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.82rem 1.15rem;
  border: 1px solid transparent;
  border-radius: 18px;
  font-size: 0.94rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.01em;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  background: var(--accent-deep);
  color: #fffaf2;
  border-color: rgba(72, 43, 16, 0.24);
  box-shadow: 0 12px 28px rgba(89, 56, 23, 0.24);
}

body.site-refresh a.button-primary,
body.site-refresh a.button-primary:visited,
body.site-refresh .resource-actions .button-primary,
body.site-refresh .inline-cta .button-primary {
  color: #fffaf2;
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #583813;
  color: #fffaf2;
  border-color: rgba(72, 43, 16, 0.34);
}

body.site-refresh a.button-primary:hover,
body.site-refresh a.button-primary:focus-visible,
body.site-refresh a.button-primary:visited:hover {
  color: #fffaf2;
}

.site-header__cta.button-primary {
  color: #fffaf2;
}

.button-secondary {
  background: #f3ecdf;
  color: #16202a;
  border-color: rgba(24, 33, 43, 0.16);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: #ead9bb;
  border-color: rgba(109, 71, 31, 0.36);
  color: var(--accent-deep);
}

.button-light {
  background: rgba(255, 255, 255, 0.14);
  color: var(--ink-inverse);
  border-color: rgba(255, 255, 255, 0.22);
}

.button-light:hover,
.button-light:focus-visible {
  background: #f7f3ed;
  color: #16202a;
  border-color: #f7f3ed;
}

.button-light--dark {
  background: rgba(22, 32, 42, 0.78);
  color: #fffaf2;
  border-color: rgba(22, 32, 42, 0.78);
}

body.site-refresh a.button-light--dark,
body.site-refresh a.button-light--dark:visited {
  color: #fffaf2;
}

.button-light--dark:hover,
.button-light--dark:focus-visible {
  background: #16202a;
  color: #fffaf2;
  border-color: #16202a;
}

body.site-refresh a.button-light--dark:hover,
body.site-refresh a.button-light--dark:focus-visible,
body.site-refresh a.button-light--dark:visited:hover,
body.site-refresh a.button-light--dark:visited:focus-visible {
  color: #fffaf2;
}

.page-home .site-header,
.page-standard .site-header {
  background: rgba(12, 17, 22, 0.78);
  border-bottom-color: rgba(255, 255, 255, 0.08);
}

.page-home .brand-name,
.page-home .site-header .nav-link,
.page-standard .brand-name,
.page-standard .site-header .nav-link {
  color: var(--ink-inverse);
}

.page-home .brand-kicker,
.page-standard .brand-kicker {
  color: #d7b98b;
}

.page-home .site-header .nav-link:hover,
.page-home .site-header .nav-link:focus-visible,
.page-home .site-header .nav-link.current,
.page-standard .site-header .nav-link:hover,
.page-standard .site-header .nav-link:focus-visible,
.page-standard .site-header .nav-link.current {
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;
}

.page-home .site-header .nav-item--has-submenu:hover > .nav-link,
.page-home .site-header .nav-item--has-submenu:focus-within > .nav-link,
.page-standard .site-header .nav-item--has-submenu:hover > .nav-link,
.page-standard .site-header .nav-item--has-submenu:focus-within > .nav-link {
  background: var(--accent-soft);
  color: var(--accent-deep);
}

.page-home .site-header .nav-submenu .nav-sublink,
.page-standard .site-header .nav-submenu .nav-sublink {
  color: rgba(247, 243, 237, 0.96);
}

.page-home .site-header .nav-submenu .nav-sublink:hover,
.page-home .site-header .nav-submenu .nav-sublink:focus-visible,
.page-home .site-header .nav-submenu .nav-sublink.current,
.page-standard .site-header .nav-submenu .nav-sublink:hover,
.page-standard .site-header .nav-submenu .nav-sublink:focus-visible,
.page-standard .site-header .nav-submenu .nav-sublink.current {
  color: #ffffff;
}

.page-home .nav-toggle,
.page-standard .nav-toggle {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
  color: var(--ink-inverse);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
}

.page-home .nav-toggle:hover,
.page-home .nav-toggle:focus-visible,
.page-standard .nav-toggle:hover,
.page-standard .nav-toggle:focus-visible,
.page-home .nav-toggle[aria-expanded="true"],
.page-standard .nav-toggle[aria-expanded="true"] {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(215, 185, 139, 0.4);
  color: #ffffff;
}

.page-hero {
  position: relative;
  overflow: hidden;
  background: #0f151c;
  color: var(--ink-inverse);
}

.page-hero__bg,
.page-hero__vignette,
.page-hero__frame {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.page-hero__bg {
  background:
    radial-gradient(circle at 14% 26%, rgba(138, 97, 49, 0.16), transparent 28%),
    radial-gradient(circle at 82% 18%, rgba(138, 97, 49, 0.08), transparent 24%),
    linear-gradient(180deg, #151d26 0%, #0f151c 100%);
}

.page-hero__vignette {
  background: radial-gradient(circle at 44% 40%, transparent 16%, rgba(6, 10, 14, 0.54) 100%);
}

.page-hero__frame {
  left: 0;
  right: 0;
  inset: auto 0;
  height: 1px;
}

.page-hero__frame--top {
  top: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(215, 185, 139, 0.92) 18%, rgba(215, 185, 139, 0.92) 82%, transparent 100%);
}

.page-hero__frame--bottom {
  bottom: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(215, 185, 139, 0.24) 18%, rgba(215, 185, 139, 0.24) 82%, transparent 100%);
}

.page-hero__grid,
.page-hero__stack {
  position: relative;
  z-index: 1;
}

.page-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.92fr);
  gap: clamp(1rem, 2.5vw, 2rem);
  align-items: center;
  min-height: 20rem;
  padding: clamp(1.75rem, 3.8vw, 2.8rem) 0 clamp(1.35rem, 3vw, 1.9rem);
}

.page-hero__grid--single {
  grid-template-columns: minmax(0, 1fr);
}

.page-hero__stack {
  max-width: 46rem;
  padding: clamp(1.7rem, 3.7vw, 2.7rem) 0 clamp(1.35rem, 3vw, 1.9rem);
}

.page-hero__content {
  display: grid;
  gap: 0.8rem;
}

.page-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #d7b98b;
}

.page-hero__eyebrow::before {
  content: "";
  width: 2.2rem;
  height: 1px;
  background: currentColor;
}

.page-hero__title {
  margin: 0;
  max-width: 14ch;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(1.8rem, 3.7vw, 2.9rem);
  line-height: 1.06;
  letter-spacing: -0.032em;
  color: #f5f0e8;
}

.page-hero__title--wide {
  max-width: 20ch;
}

.page-hero__lead {
  margin: 0;
  max-width: 34rem;
  font-size: 0.96rem;
  line-height: 1.64;
  color: rgba(245, 240, 232, 0.8);
}

.page-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 0;
}

.page-hero__panel {
  width: min(100%, 18rem);
  padding: 0.9rem 0.95rem;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.055) 0%, rgba(255, 255, 255, 0.03) 100%);
  box-shadow: 0 16px 30px rgba(4, 8, 11, 0.16);
}

.page-hero__panel--soft {
  background: rgba(255, 255, 255, 0.05);
}

.page-hero__panel--portrait {
  width: min(100%, 15.5rem);
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  justify-self: center;
  text-align: center;
}

.page-hero__portrait-frame {
  max-width: 9.8rem;
}

.page-hero__panel--portrait .page-hero__portrait-frame {
  max-width: 11.5rem;
  margin: 0 auto;
}

.page-hero__portrait {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 12%;
  border-radius: 22px;
}

.page-hero__portrait-copy {
  display: grid;
  gap: 0.16rem;
  margin-top: 0.7rem;
}

.page-hero__panel--portrait .page-hero__portrait-copy {
  justify-items: center;
}

.page-hero__portrait-copy strong {
  color: #ffffff;
  font-size: 0.96rem;
}

.page-hero__portrait-copy span,
.page-hero__list li,
.page-hero__meta,
.page-hero__center-copy {
  color: rgba(245, 240, 232, 0.74);
}

.page-hero__label {
  margin-bottom: 0.55rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #d7b98b;
}

.page-hero__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.5rem;
}

.page-hero__list li {
  position: relative;
  padding-left: 1rem;
  line-height: 1.48;
}

.page-hero__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72rem;
  width: 0.38rem;
  height: 0.38rem;
  border-radius: 999px;
  background: #d7b98b;
  transform: translateY(-50%);
}

.page-hero__center {
  text-align: center;
}

.page-hero__center .page-hero__eyebrow {
  justify-content: center;
}

.page-hero__center .page-hero__title,
.page-hero__center .page-hero__lead {
  max-width: none;
}

.nowrap {
  white-space: nowrap;
}

.page-hero__center-media {
  max-width: 9rem;
  margin: 0 auto 0.8rem;
}

.page-hero__center--links {
  max-width: 42rem;
  margin: 0 auto;
  justify-items: center;
}

.page-hero__center-media--links {
  max-width: 10.5rem;
  margin: 0 auto 1rem;
}

.page-hero__title--links {
  max-width: 17ch;
  text-wrap: balance;
}

.page-hero__center--links .page-hero__lead {
  max-width: 32rem;
}

.page-hero--compact .page-hero__bg {
  background:
    radial-gradient(circle at 14% 24%, rgba(138, 97, 49, 0.12), transparent 26%),
    linear-gradient(180deg, #141c24 0%, #10171e 100%);
}

.page-hero--compact .page-hero__vignette {
  background: radial-gradient(circle at 44% 38%, transparent 26%, rgba(6, 10, 14, 0.42) 100%);
}

.page-hero--compact .page-hero__grid {
  grid-template-columns: minmax(0, 1fr) minmax(220px, 0.68fr);
  gap: clamp(0.9rem, 2vw, 1.6rem);
  min-height: 16rem;
  padding: clamp(1.35rem, 3vw, 2rem) 0 clamp(1.05rem, 2.4vw, 1.45rem);
}

.page-hero--compact .page-hero__title {
  max-width: 16ch;
  font-size: clamp(1.55rem, 3vw, 2.35rem);
}

.page-hero--compact .page-hero__lead {
  max-width: 31rem;
  font-size: 0.93rem;
  line-height: 1.58;
}

.page-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 1rem;
  margin-top: 1rem;
  color: rgba(247, 243, 237, 0.82);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.page-meta__item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.page-meta__item + .page-meta__item::before {
  content: "\2022";
  color: rgba(231, 210, 174, 0.92);
  margin-right: 0.1rem;
}

.page-hero--compact .page-hero__panel {
  width: min(100%, 15.5rem);
  padding: 0.78rem 0.82rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.045);
  box-shadow: none;
}

.page-hero--minimal .page-hero__bg {
  background: linear-gradient(180deg, #141c24 0%, #10171e 100%);
}

.page-hero--minimal .page-hero__vignette,
.page-hero--minimal .page-hero__frame {
  display: none;
}

.page-hero--minimal .page-hero__stack {
  max-width: 38rem;
  padding: clamp(1.2rem, 2.8vw, 1.8rem) 0 clamp(0.95rem, 2vw, 1.25rem);
}

.page-hero--minimal .page-hero__content,
.page-hero--minimal .page-hero__stack {
  gap: 0.55rem;
}

.page-hero--minimal .page-hero__eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
}

.page-hero--minimal .page-hero__eyebrow::before {
  width: 1.4rem;
  opacity: 0.72;
}

.page-hero--minimal .page-hero__title {
  max-width: 23ch;
  font-size: clamp(1.45rem, 2.7vw, 2.05rem);
  line-height: 1.12;
  letter-spacing: -0.024em;
}

.page-hero--minimal .page-hero__lead {
  max-width: 31rem;
  font-size: 0.92rem;
  line-height: 1.56;
}

.page-hero--minimal .page-hero__center-media {
  max-width: 6.6rem;
  margin: 0 auto 0.55rem;
}

.home-hero {
  position: relative;
  overflow: hidden;
  background: #0d1319;
  color: var(--ink-inverse);
}

.home-hero__bg,
.home-hero__vignette,
.home-hero__frame {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.home-hero__bg {
  background:
    radial-gradient(circle at 16% 24%, rgba(138, 97, 49, 0.24), transparent 30%),
    radial-gradient(circle at 80% 14%, rgba(138, 97, 49, 0.11), transparent 24%),
    radial-gradient(circle at 76% 72%, rgba(138, 97, 49, 0.08), transparent 28%),
    linear-gradient(180deg, #131b23 0%, #0d1319 100%);
}

.home-hero__vignette {
  background: radial-gradient(circle at 46% 46%, transparent 10%, rgba(6, 10, 14, 0.7) 100%);
}

.home-hero__frame {
  left: 0;
  right: 0;
  inset: auto 0;
  height: 1px;
  opacity: 0.72;
}

.home-hero__frame--top {
  top: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(215, 185, 139, 0.95) 18%, rgba(215, 185, 139, 0.95) 82%, transparent 100%);
}

.home-hero__frame--bottom {
  bottom: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(215, 185, 139, 0.26) 18%, rgba(215, 185, 139, 0.26) 82%, transparent 100%);
}

.home-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
  align-items: start;
  min-height: min(46rem, calc(100svh - 80px));
  padding: clamp(3.4rem, 8vw, 5.6rem) 0 clamp(2.2rem, 5vw, 3.1rem);
}

.home-hero__content {
  display: grid;
  gap: 1rem;
  max-width: 54rem;
}

.home-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #d7b98b;
}

.home-hero__eyebrow::before {
  content: "";
  width: 2.4rem;
  height: 1px;
  background: currentColor;
}


.home-hero__headline {
  margin: 0;
  font-family: "Fraunces", Georgia, serif;
  max-width: 16.4ch;
  font-size: clamp(2.25rem, 5vw, 4.05rem);
  line-height: 1.01;
  letter-spacing: -0.05em;
  color: #f5f0e8;
}

.home-hero__headline-accent {
  color: #d7b98b;
  font-style: italic;
}

.home-hero__headline-rule {
  width: clamp(5rem, 14vw, 8rem);
  height: 2px;
  background: linear-gradient(90deg, #d7b98b 0%, transparent 100%);
  margin-top: 0.2rem;
}

.home-hero__copy {
  margin: 0;
}

.home-hero__copy {
  max-width: 40rem;
  font-size: 1.04rem;
  line-height: 1.72;
  color: rgba(245, 240, 232, 0.8);
}

.home-hero__actions,
.home-hero__strip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.home-hero__actions {
  align-items: center;
  margin-top: 0.5rem;
}

.home-hero__primary {
  width: min(100%, 18rem);
  min-width: 0;
  padding-inline: 1.7rem;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.1rem;
}

.home-hero__primary small {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(247, 243, 237, 0.82);
}

.home-hero__context {
  margin-top: 1.05rem;
  padding-top: 0.95rem;
  border-top: 1px solid rgba(215, 185, 139, 0.16);
}

.home-hero__context-label {
  margin-bottom: 0.65rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #d7b98b;
}

.home-hero__context-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
}

.home-hero__context-card {
  min-width: 0;
  padding: 0.9rem 0 0.05rem 1rem;
  border-left: 1px solid rgba(215, 185, 139, 0.28);
}

.home-hero__context-card h3 {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.46;
  font-weight: 600;
  color: rgba(245, 240, 232, 0.92);
}

.hero {
  padding: clamp(3.7rem, 8vw, 6rem) 0 clamp(3rem, 6vw, 4.8rem);
}

.hero--home {
  background:
    radial-gradient(circle at top left, rgba(138, 97, 49, 0.14), transparent 32%),
    linear-gradient(180deg, #fbf8f3 0%, #efe7da 100%);
}

.hero--inner {
  background:
    radial-gradient(circle at top right, rgba(138, 97, 49, 0.12), transparent 28%),
    linear-gradient(180deg, #fbf8f3 0%, #f1eadf 100%);
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: clamp(1.6rem, 4vw, 3.6rem);
  align-items: center;
}

.hero__grid--narrow {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.78fr);
}

.hero__content {
  display: grid;
  gap: 1.2rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}

.eyebrow::before {
  content: "";
  width: 2.6rem;
  height: 1px;
  background: currentColor;
}

.hero__title,
.section-title,
.surface-title,
.cta-title {
  margin: 0;
  font-family: "Fraunces", Georgia, serif;
  letter-spacing: -0.035em;
  line-height: 0.98;
  color: var(--ink);
}

.hero__title {
  font-size: clamp(2.8rem, 6vw, 5.2rem);
  max-width: 12ch;
}

.hero__lead,
.section-lead {
  margin: 0;
  font-size: 1.08rem;
  color: var(--ink-soft);
}

.hero__actions,
.button-row,
.pill-row,
.footer-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.pill-row {
  gap: 0.65rem;
}

.pill {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0.65rem 0.95rem;
  border-radius: 999px;
  background: #f5efe4;
  border: 1px solid rgba(24, 33, 43, 0.1);
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 700;
}

.surface {
  padding: clamp(1.35rem, 3vw, 2rem);
  border-radius: var(--radius-xl);
  background: var(--surface);
  border: 1px solid rgba(24, 33, 43, 0.08);
  box-shadow: var(--shadow);
  min-width: 0;
}

.surface--dark {
  background: linear-gradient(180deg, var(--deep) 0%, var(--deep-2) 100%);
  color: var(--ink-inverse);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-strong);
}

.surface--alt {
  background: var(--surface-alt);
}

.surface--tight {
  padding: 1.25rem;
}

.surface-title {
  font-size: clamp(2rem, 4vw, 3rem);
}

.surface-title + .surface-subtitle,
.surface-title + .surface-copy,
.surface-title + p,
.surface-title + ul,
.surface-title + .faq-list,
.surface-title + .button-row {
  margin-top: 0.8rem;
}

.surface-subtitle + p,
.surface-subtitle + ul,
.surface-subtitle + .button-row {
  margin-top: 0.8rem;
}

.surface-subtitle,
.surface-copy,
.surface--dark p,
.surface--dark li {
  color: var(--ink-soft);
}

.testimonial-stack {
  display: grid;
  gap: 0.9rem;
}

.testimonial-mobile-hint {
  display: none;
}

.video-mobile-hint {
  display: none;
}

.testimonial-quote {
  margin: 0;
  padding: 1rem 1.05rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.testimonial-meta {
  display: grid;
  justify-items: start;
  gap: 0.18rem;
  margin-bottom: 0.8rem;
}

.testimonial-author {
  font-size: 0.98rem;
  font-weight: 800;
  color: #ffffff;
}

.testimonial-source {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(247, 243, 237, 0.62);
}

.testimonial-stars {
  font-size: 0.98rem;
  letter-spacing: 0.2em;
  color: #d7b98b;
}

.testimonial-quote p {
  margin: 0;
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.08rem;
  line-height: 1.55;
  color: rgba(247, 243, 237, 0.96);
}

.testimonial-disclosure {
  margin-top: 1rem;
  padding-top: 0.9rem;
  border-top: 1px solid rgba(215, 185, 139, 0.28);
}

.testimonial-disclosure .legal-note {
  color: rgba(247, 243, 237, 0.64);
}

.surface--dark .surface-title,
.surface--dark .surface-subtitle,
.surface--dark p,
.surface--dark li,
.surface--dark .eyebrow,
.surface--dark .mini-title {
  color: var(--ink-inverse);
}

.surface--dark .eyebrow::before {
  background: currentColor;
}

.surface--dark .button-secondary {
  background: #f7f3ed;
  color: var(--deep);
  border-color: rgba(247, 243, 237, 0.9);
  box-shadow: 0 12px 26px rgba(5, 9, 14, 0.18);
}

.surface--dark .button-secondary:hover,
.surface--dark .button-secondary:focus-visible {
  background: #ffffff;
  color: #111922;
  border-color: #ffffff;
}

.surface-copy,
.surface p {
  margin: 0;
}

.profile-panel {
  display: grid;
  gap: 1rem;
}

.profile-frame {
  max-width: 18.75rem;
  margin-left: auto;
}

.profile-image {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 12%;
  border-radius: 28px;
  border: 1px solid rgba(24, 33, 43, 0.08);
  box-shadow: var(--shadow);
}

.profile-caption {
  display: grid;
  gap: 0.2rem;
  margin-top: 0.8rem;
}

.profile-caption strong {
  font-size: 1rem;
}

.profile-caption span {
  color: var(--ink-soft);
}

.list-check,
.list-clean {
  margin: 0;
  padding: 0;
  list-style: none;
}

.list-check {
  display: grid;
  gap: 0.8rem;
}

.list-check li {
  position: relative;
  padding-left: 1.2rem;
  color: var(--ink-soft);
}

.list-check li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.74rem;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 999px;
  background: var(--accent);
  transform: translateY(-50%);
}

.surface--dark .list-check li {
  color: rgba(247, 243, 237, 0.9);
}

.surface--dark .list-check li::before {
  background: #d7b98b;
}

.list-clean {
  display: grid;
  gap: 0.8rem;
}

.list-clean a,
.list-clean a:visited {
  color: #165bb5;
  text-decoration: none;
  border-bottom: 1px solid rgba(22, 91, 181, 0.72);
}

.list-clean a:hover,
.list-clean a:focus-visible,
.list-clean a:visited:hover,
.list-clean a:visited:focus-visible {
  color: #0f4a95;
  border-bottom-color: rgba(15, 74, 149, 0.95);
}

.list-clean li + li {
  padding-top: 0.8rem;
  border-top: 1px solid rgba(24, 33, 43, 0.08);
}

.section {
  padding: clamp(3.2rem, 7vw, 5.6rem) 0;
}

.section--soft {
  background: var(--bg-soft);
}

.section--deep {
  background: linear-gradient(180deg, #17212b 0%, #101820 100%);
  color: var(--ink-inverse);
}

.section--deep .section__eyebrow {
  color: #d7b98b;
}

.section--deep .section-title,
.section--deep .section-lead {
  color: var(--ink-inverse);
}

.section__header {
  display: grid;
  gap: 0.75rem;
  max-width: 48rem;
  margin-bottom: 2rem;
}

.section-title + .section-lead,
.section-title + p {
  margin-top: 0.45rem;
}

.section__eyebrow {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}

.section-title {
  font-size: clamp(2.15rem, 4.5vw, 3.6rem);
}

.card-grid {
  display: grid;
  gap: 1rem;
}

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

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

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

.card {
  padding: 1.45rem;
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid rgba(24, 33, 43, 0.08);
  box-shadow: var(--shadow);
}

.card h3,
.mini-title {
  margin: 0 0 0.55rem;
  font-size: 1.08rem;
  line-height: 1.3;
  color: var(--ink);
}

.card h3 + p,
.card h3 + ul,
.card h3 + .list-clean,
.card h3 + .list-check {
  margin-top: 0.15rem;
}

.card p,
.card li {
  margin: 0;
  color: var(--ink-soft);
}

.number-badge {
  display: inline-grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  margin-bottom: 1rem;
  border-radius: 14px;
  background: #ead8ba;
  color: var(--accent-deep);
  font-size: 0.92rem;
  font-weight: 800;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 1rem;
  align-items: stretch;
}

.split--top {
  align-items: start;
}

.faq-list {
  display: grid;
  gap: 0.85rem;
}

.faq-list details {
  border-radius: var(--radius-md);
  border: 1px solid rgba(24, 33, 43, 0.08);
  background: var(--surface);
  overflow: hidden;
}

.faq-list summary {
  list-style: none;
  padding: 1.1rem 1.2rem;
  font-weight: 800;
  color: var(--ink);
  cursor: pointer;
}

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

.faq-answer {
  padding: 0 1.2rem 1.1rem;
  color: var(--ink-soft);
}

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

.video-grid--portrait {
  grid-template-columns: repeat(auto-fit, minmax(14.5rem, 16.5rem));
  justify-content: center;
  gap: 1.25rem;
}

.video-card {
  padding: 1rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.video-card--portrait {
  width: 100%;
  max-width: 18rem;
  justify-self: center;
}

.video-card h3 {
  margin: 0.9rem 0 0.4rem;
  color: var(--ink-inverse);
  font-size: 1rem;
}

.video-card p {
  margin: 0;
  color: rgba(247, 243, 237, 0.72);
}

.video-frame {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: #0a1015;
}

.video-frame--portrait {
  padding-top: 177.78%;
}

.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.reviews-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.74fr) minmax(0, 1.26fr);
  gap: 1rem;
  align-items: start;
}

.review-summary {
  position: sticky;
  top: 6rem;
}

.review-summary__score {
  display: flex;
  align-items: flex-end;
  gap: 0.35rem;
  margin-top: 0.9rem;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(3rem, 7vw, 4.4rem);
  line-height: 0.9;
}

.review-summary__score small {
  margin-bottom: 0.45rem;
  font-size: 1rem;
  color: var(--ink-soft);
}

.review-summary__count,
.review-summary__sort {
  margin: 0.75rem 0 0;
  color: var(--ink-soft);
}

.google-maps-mark {
  margin-top: 1.35rem;
  font-family: Roboto, "Manrope", sans-serif;
  font-size: 0.84rem;
  color: #5e5e5e;
}

.reviews-feed-wrap {
  display: grid;
  gap: 0.9rem;
}

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

.review-card {
  display: grid;
  gap: 1rem;
  min-height: 100%;
  padding: 1.35rem;
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid rgba(24, 33, 43, 0.08);
  box-shadow: var(--shadow);
}

.review-card__header,
.review-author {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
}

.review-author {
  justify-content: flex-start;
  min-width: 0;
}

.review-author__avatar {
  flex: 0 0 auto;
  width: 3rem;
  height: 3rem;
  border-radius: 999px;
  object-fit: cover;
  background: var(--surface-strong);
}

.review-author__meta {
  display: grid;
  gap: 0.12rem;
  min-width: 0;
}

.review-author__name {
  font-weight: 800;
  color: var(--ink);
}

.review-author__detail {
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.review-stars {
  flex: 0 0 auto;
  color: var(--accent);
  font-size: 1rem;
  letter-spacing: 0.08em;
}

.review-card__body {
  margin: 0;
  color: var(--ink-soft);
}

.review-card__footer {
  margin-top: auto;
}

.review-card__link {
  font-weight: 800;
  color: var(--accent-deep);
}

.reviews-status {
  min-height: 1.4rem;
}

.review-disclosure {
  margin-top: 1rem;
  display: grid;
  gap: 0.8rem;
}

.cta-panel {
  padding: clamp(1.8rem, 4vw, 2.8rem);
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, var(--deep) 0%, var(--deep-2) 100%);
  color: var(--ink-inverse);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-strong);
}

.cta-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--ink-inverse);
}

.cta-title + p {
  margin-top: 0.9rem;
}

.cta-panel p {
  margin: 0.8rem 0 0;
  max-width: 42rem;
  color: rgba(247, 243, 237, 0.76);
}

.links-stack {
  display: grid;
  gap: 0.85rem;
}

.link-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.2rem;
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid rgba(24, 33, 43, 0.08);
  box-shadow: var(--shadow);
  font-weight: 800;
}

.link-card span:last-child {
  color: var(--accent);
}

.fee-table-wrap {
  overflow-x: auto;
  padding: 0.15rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(248, 244, 237, 0.92) 100%);
  border: 1px solid rgba(24, 33, 43, 0.08);
  box-shadow: var(--shadow);
}

.fee-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 30rem;
}

.fee-table th,
.fee-table td {
  padding: 1rem 1.15rem;
  text-align: left;
}

.fee-table thead th {
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-deep);
  background: rgba(231, 210, 174, 0.42);
}

.fee-table tbody td {
  border-top: 1px solid rgba(24, 33, 43, 0.08);
  color: var(--ink);
  font-weight: 700;
}

.fee-table tbody td:last-child {
  color: var(--accent-deep);
}

.fee-table tbody td:last-child,
.fee-table thead th:last-child {
  white-space: nowrap;
}

.disclosure-copy {
  display: grid;
  gap: 1.1rem;
}

.disclosure-copy .eyebrow {
  margin-bottom: -0.15rem;
}

.disclosure-copy .surface-title {
  max-width: 18ch;
  font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: 1.02;
}

.disclosure-copy p {
  margin: 0;
  max-width: 70ch;
  font-size: 0.98rem;
  line-height: 1.72;
  color: var(--ink-soft);
}

.disclosure-copy .faq-list {
  margin-top: 0.4rem;
  gap: 0.95rem;
}

.disclosure-copy .faq-list details {
  border-radius: 20px;
  border: 1px solid rgba(24, 33, 43, 0.1);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(247, 242, 234, 0.92) 100%);
  box-shadow: 0 14px 34px rgba(20, 27, 35, 0.05);
}

.disclosure-copy .faq-list summary {
  padding: 1.15rem 1.25rem;
  font-size: 0.98rem;
  letter-spacing: -0.01em;
}

.disclosure-copy .faq-answer {
  display: grid;
  gap: 0.9rem;
  padding: 0 1.25rem 1.2rem;
}

.disclosure-copy .faq-answer h3 {
  margin: 0.35rem 0 -0.2rem;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-deep);
}

.disclosure-copy .faq-answer h3 + p {
  margin-top: 0.35rem;
}

.disclosure-copy .faq-answer p {
  max-width: none;
  font-size: 0.96rem;
  line-height: 1.74;
}

.disclosure-copy a {
  color: var(--accent-deep);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 0.14em;
}

.site-footer {
  background: #111921;
  color: var(--ink-inverse);
  margin-top: clamp(3rem, 6vw, 4.5rem);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.9fr 0.85fr;
  gap: 1.4rem;
  padding: 3rem 0 1.8rem;
}

.footer-grid p,
.footer-grid li,
.footer-meta {
  color: rgba(247, 243, 237, 0.74);
}

.footer-title {
  margin: 0 0 0.75rem;
  font-size: 1rem;
  font-weight: 800;
  color: var(--ink-inverse);
}

.footer-nav {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.55rem;
}

.footer-nav a:hover,
.footer-nav a:focus-visible {
  color: #ffffff;
}

.footer-meta {
  padding: 1rem 0 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.92rem;
}

.legal-note {
  margin: 0;
  font-size: 0.92rem;
  color: var(--ink-soft);
}

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

  .site-header__row {
    gap: 0.72rem;
  }

  .brand img {
    width: clamp(9.75rem, 17vw, 12.75rem);
  }

  .nav-link {
    padding: 0.64rem 0.6rem;
    font-size: 0.84rem;
  }

  .site-header__cta {
    margin-left: 0.5rem;
    padding-inline: 0.85rem;
    font-size: 0.86rem;
  }
}

@media (max-width: 960px) {
  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding-inline: 0.95rem;
  }

  .site-nav {
    position: fixed;
    top: 80px;
    left: var(--gutter);
    right: var(--gutter);
    display: none;
    padding: 1rem;
    border-radius: 22px;
    background: rgba(17, 25, 33, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow-strong);
    backdrop-filter: blur(18px);
  }

  .site-nav.is-open {
    display: block;
  }

  .nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 0.15rem;
  }

  .nav-link {
    color: var(--ink-inverse);
    justify-content: flex-start;
    min-height: 0;
    padding: 0.78rem 0.9rem;
    border-radius: 14px;
  }

  .nav-item + .nav-item {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 0.12rem;
  }

  .nav-submenu {
    position: static;
    min-width: 0;
    padding: 0.3rem 0 0.3rem 1rem;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
    transition: none;
  }

  .nav-sublink {
    color: rgba(247, 243, 237, 0.76);
    padding: 0.62rem 0.85rem;
    font-size: 0.9rem;
    border-radius: 12px;
  }

  .nav-sublink:hover,
  .nav-sublink:focus-visible,
  .nav-sublink.current {
    background: rgba(255, 255, 255, 0.08);
  }

  .site-header__cta {
    display: none;
  }

  .hero__grid,
  .hero__grid--narrow,
  .page-hero__grid,
  .split,
  .reviews-layout,
  .footer-grid,
  .card-grid--three,
  .card-grid--two,
  .video-grid {
    grid-template-columns: 1fr;
  }

  .home-hero__grid {
    min-height: auto;
    padding: 3.3rem 0 2.4rem;
  }

  .home-hero__context-grid {
    grid-template-columns: 1fr;
  }

  .home-hero__strip-row {
    justify-content: flex-start;
  }

  .reviews-feed {
    grid-template-columns: 1fr;
  }

  .profile-frame {
    max-width: 16rem;
    margin-left: 0;
  }

  .page-hero--compact .page-hero__grid {
    grid-template-columns: 1fr;
  }

  .page-hero--compact .page-hero__panel:not(.page-hero__panel--portrait) {
    width: min(100%, 30rem);
    justify-self: start;
  }

  .page-hero--compact .page-hero__actions {
    width: min(100%, 30rem);
    flex-direction: column;
    align-items: stretch;
  }
}

@media (max-width: 720px) {
  .brand img {
    width: min(100%, 10.75rem);
  }

  .nowrap {
    white-space: normal;
  }

  .section {
    padding: 2.25rem 0;
  }

  .section__header {
    gap: 0.55rem;
    margin-bottom: 1.2rem;
  }

  .section-title,
  .surface-title,
  .cta-title {
    font-size: clamp(1.55rem, 7.2vw, 2.1rem);
    line-height: 1.04;
  }

  .home-hero__headline {
    font-size: clamp(2.15rem, 10vw, 3.05rem);
  }

  .page-hero__title {
    max-width: none;
    font-size: clamp(1.6rem, 7.2vw, 2.15rem);
  }

  .home-hero__copy {
    font-size: 0.98rem;
    line-height: 1.7;
  }

  .home-hero__context {
    margin-top: 0.8rem;
    padding-top: 0.9rem;
  }

  .home-hero__context-card {
    padding: 0.95rem;
  }

  .home-hero__context-card h3 {
    font-size: 0.95rem;
  }

  .home-hero__context-card p {
    font-size: 0.9rem;
  }

  .page-hero__lead {
    font-size: 0.94rem;
  }

  .section-lead,
  .surface-copy,
  .card p,
  .card li,
  .review-card__body,
  .cta-panel p,
  .legal-note {
    font-size: 0.95rem;
  }

  .card {
    padding: 1.15rem;
  }

  .card h3,
  .mini-title {
    font-size: 1rem;
  }

  .number-badge {
    width: 2.2rem;
    height: 2.2rem;
    margin-bottom: 0.8rem;
  }

  .surface {
    padding: 1.15rem;
  }

  .cta-panel {
    padding: 1.45rem;
  }

  .home-hero__actions,
  .page-hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .home-hero__primary,
  .page-hero__panel {
    width: 100%;
  }

  .home-hero__primary,
  .home-hero__content,
  .testimonial-quote,
  .split > *,
  .card-grid > *,
  .reviews-layout > *,
  .footer-grid > * {
    min-width: 0;
  }

  .testimonial-stack {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(88%, 1fr);
    gap: 0.8rem;
    overflow-x: auto;
    padding-bottom: 0.35rem;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
  }

  .testimonial-stack::-webkit-scrollbar {
    height: 0.42rem;
  }

  .testimonial-stack::-webkit-scrollbar-thumb {
    background: rgba(215, 185, 139, 0.34);
    border-radius: 999px;
  }

  .testimonial-quote {
    scroll-snap-align: start;
  }

  .testimonial-mobile-hint {
    display: block;
    margin-top: 0.7rem;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(247, 243, 237, 0.58);
  }

  .video-grid--portrait {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(14.5rem, 76%);
    grid-template-columns: none;
    justify-content: flex-start;
    gap: 0.8rem;
    overflow-x: auto;
    padding-bottom: 0.35rem;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
  }

  .video-card--portrait {
    scroll-snap-align: start;
    max-width: none;
  }

  .video-grid--portrait::-webkit-scrollbar {
    height: 0.42rem;
  }

  .video-grid--portrait::-webkit-scrollbar-thumb {
    background: rgba(215, 185, 139, 0.34);
    border-radius: 999px;
  }

  .video-mobile-hint {
    display: block;
    margin-top: 0.7rem;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(247, 243, 237, 0.58);
  }

  .reviews-feed {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(88%, 1fr);
    gap: 0.8rem;
    overflow-x: auto;
    padding-bottom: 0.35rem;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
  }

  .review-card {
    scroll-snap-align: start;
    padding: 1.15rem;
  }

  .reviews-feed::-webkit-scrollbar {
    height: 0.42rem;
  }

  .reviews-feed::-webkit-scrollbar-thumb {
    background: rgba(138, 97, 49, 0.25);
    border-radius: 999px;
  }

  .hero__title {
    max-width: none;
    font-size: clamp(2.45rem, 11vw, 3.5rem);
  }

  .button-row,
  .hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .card-grid--four {
    grid-template-columns: 1fr;
  }

  .button,
  .link-card {
    width: 100%;
  }

  .button {
    min-height: 2.85rem;
    padding: 0.8rem 1rem;
    border-radius: 16px;
    font-size: 0.93rem;
  }

  .nav-toggle {
    min-height: 2.75rem;
    padding: 0.64rem 0.88rem;
    gap: 0.58rem;
    font-size: 0.86rem;
  }

  .nav-toggle__icon {
    width: 0.95rem;
  }

  .fee-table {
    min-width: 26rem;
  }

  .fee-table th,
  .fee-table td {
    padding: 0.85rem 0.9rem;
    font-size: 0.92rem;
  }

  .fee-table thead th {
    font-size: 0.74rem;
    letter-spacing: 0.09em;
  }
}

@media (max-width: 420px) {
  .fee-table-wrap {
    padding: 0;
  }

  .fee-table {
    min-width: 0;
    table-layout: fixed;
  }

  .fee-table th,
  .fee-table td {
    padding: 0.72rem 0.7rem;
    font-size: 0.86rem;
  }

  .fee-table thead th {
    font-size: 0.68rem;
    letter-spacing: 0.07em;
  }

  .fee-table th:first-child,
  .fee-table td:first-child {
    width: 68%;
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .fee-table th:last-child,
  .fee-table td:last-child {
    width: 32%;
    text-align: right;
    white-space: nowrap;
  }
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0 0 1rem;
  padding: 0;
  list-style: none;
  color: var(--ink-soft);
  font-size: 0.9rem;
  font-weight: 700;
}

.breadcrumb li {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.breadcrumb li:not(:last-child)::after {
  content: "/";
  color: rgba(91, 101, 114, 0.72);
}

.breadcrumb a:hover,
.breadcrumb a:focus-visible {
  color: var(--accent-deep);
}

.page-hero .breadcrumb,
.page-hero .breadcrumb a {
  color: rgba(247, 243, 237, 0.82);
}

.page-hero .breadcrumb li:not(:last-child)::after {
  color: rgba(247, 243, 237, 0.5);
}

.page-hero .breadcrumb a:hover,
.page-hero .breadcrumb a:focus-visible {
  color: #ffffff;
}

.guide-overview {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
  align-items: stretch;
}

.resource-topic__title {
  font-size: clamp(1.45rem, 2.25vw, 2rem);
  line-height: 1.08;
  max-width: 24ch;
}

.guide-cluster {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(18rem, 0.85fr);
  gap: 1.1rem;
  align-items: stretch;
}

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

.guide-card {
  display: grid;
  gap: 0.75rem;
  padding: 1.3rem;
  border: 1px solid rgba(24, 33, 43, 0.08);
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 244, 237, 0.96) 100%);
  box-shadow: var(--shadow);
}

.guide-card h3,
.guide-card p {
  margin: 0;
}

.guide-card h3 {
  color: var(--ink);
}

.guide-card p {
  color: var(--ink-soft);
}

.guide-card__eyebrow {
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.guide-card__footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  margin-top: 0.15rem;
  padding-top: 0.9rem;
  border-top: 1px solid rgba(24, 33, 43, 0.08);
}

.guide-card__label {
  color: var(--ink-soft);
  font-size: 0.88rem;
  font-weight: 700;
}

.guide-card__link,
.guide-card__link:visited {
  color: #165bb5;
  font-size: 0.92rem;
  font-weight: 800;
  text-decoration: none;
  border-bottom: 1px solid rgba(22, 91, 181, 0.72);
}

.guide-card__link:hover,
.guide-card__link:focus-visible,
.guide-card__link:visited:hover,
.guide-card__link:visited:focus-visible {
  color: #0f4a95;
  border-bottom-color: rgba(15, 74, 149, 0.95);
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(17rem, 0.82fr);
  gap: 1.2rem;
  align-items: start;
}

.article-main {
  display: grid;
  gap: 1rem;
}

.article-section {
  display: grid;
  gap: 0.9rem;
}

.article-section h2,
.article-section h3,
.article-section p,
.article-section ul,
.article-section ol {
  margin: 0;
}

.article-section h2 {
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(1.5rem, 2vw, 2rem);
  line-height: 1.18;
  letter-spacing: -0.02em;
}

.article-section h3 {
  font-size: 1.08rem;
  line-height: 1.3;
}

.article-section p,
.article-section li {
  color: var(--ink-soft);
  font-size: 1rem;
}

.article-section ul,
.article-section ol {
  display: grid;
  gap: 0.72rem;
  padding-left: 1.2rem;
}

.article-section strong {
  color: var(--ink);
}

.article-section a,
.article-section a:visited {
  color: #165bb5;
  text-decoration: none;
  border-bottom: 1px solid rgba(22, 91, 181, 0.72);
}

.article-section a:hover,
.article-section a:focus-visible,
.article-section a:visited:hover,
.article-section a:visited:focus-visible {
  color: #0f4a95;
  border-bottom-color: rgba(15, 74, 149, 0.95);
}

.article-note {
  padding: 1rem 1.05rem;
  border: 1px solid rgba(138, 97, 49, 0.18);
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, rgba(231, 210, 174, 0.34) 0%, rgba(255, 255, 255, 0.76) 100%);
}

.article-note p {
  margin: 0;
  color: var(--ink);
  font-size: 0.97rem;
}

.article-aside {
  position: sticky;
  top: 6rem;
  display: grid;
  gap: 1rem;
}

.article-panel {
  padding: 1.2rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(24, 33, 43, 0.08);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
}

.article-panel--dark {
  border-color: rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(25, 37, 48, 0.98) 0%, rgba(15, 23, 31, 1) 100%);
}

.article-panel h2,
.article-panel h3,
.article-panel p,
.article-panel ul {
  margin: 0;
}

.article-panel h2,
.article-panel h3 {
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.25rem;
  line-height: 1.2;
}

.article-panel > * + * {
  margin-top: 0.9rem;
}

.article-panel--dark h2,
.article-panel--dark h3,
.article-panel--dark p,
.article-panel--dark li,
.article-panel--dark .mini-title {
  color: var(--ink-inverse);
}

.article-panel--dark .button-light {
  background: rgba(255, 255, 255, 0.08);
  color: #fffaf2;
  border-color: rgba(255, 255, 255, 0.12);
}

.article-panel--dark .button-light:hover,
.article-panel--dark .button-light:focus-visible {
  background: rgba(255, 255, 255, 0.14);
}

.article-panel--dark .article-links a {
  border-color: rgba(96, 155, 232, 0.28);
  background: rgba(255, 255, 255, 0.06);
  color: #dcecff;
}

.article-panel--dark .article-links a:hover,
.article-panel--dark .article-links a:focus-visible {
  border-color: rgba(152, 194, 247, 0.52);
  background: rgba(96, 155, 232, 0.16);
  color: #ffffff;
}

.article-panel--dark .article-links a::after {
  color: rgba(220, 236, 255, 0.82);
}

.article-panel--dark .article-links span {
  color: rgba(247, 243, 237, 0.72);
}

.mini-title {
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.article-links {
  display: grid;
  gap: 0.7rem;
}

.article-links a {
  position: relative;
  display: block;
  padding: 0.88rem 2.5rem 0.95rem 0.95rem;
  border: 1px solid rgba(22, 91, 181, 0.18);
  border-radius: 14px;
  background: rgba(22, 91, 181, 0.04);
  color: #165bb5;
  font-weight: 700;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.article-links a::after {
  content: "\2197";
  position: absolute;
  top: 0.92rem;
  right: 0.95rem;
  color: rgba(22, 91, 181, 0.72);
  font-size: 0.95rem;
  font-weight: 800;
}

.article-links a:hover,
.article-links a:focus-visible {
  border-color: rgba(22, 91, 181, 0.42);
  background: rgba(22, 91, 181, 0.08);
  color: #0f4a95;
  transform: translateY(-1px);
}

.article-links span {
  display: block;
  margin-top: 0.22rem;
  color: var(--ink-soft);
  font-size: 0.9rem;
  font-weight: 600;
}

.topic-pillars {
  display: grid;
  gap: 0.88rem;
}

.topic-pillar {
  display: grid;
  gap: 0.5rem;
  padding: 1rem 1.05rem;
  border: 1px solid rgba(24, 33, 43, 0.08);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.86);
}

.topic-pillar h3,
.topic-pillar p {
  margin: 0;
}

.inline-cta {
  display: grid;
  gap: 0.95rem;
  padding: 1.2rem;
  border-radius: var(--radius-md);
  background: linear-gradient(140deg, rgba(231, 210, 174, 0.76) 0%, rgba(255, 255, 255, 0.94) 100%);
  border: 1px solid rgba(138, 97, 49, 0.16);
}

.inline-cta h3,
.inline-cta p {
  margin: 0;
}

.inline-cta h3 {
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.35rem;
  line-height: 1.2;
}

.inline-cta .button-light {
  background: rgba(24, 33, 43, 0.05);
  color: var(--ink);
  border-color: rgba(24, 33, 43, 0.14);
}

.inline-cta .button-light:hover,
.inline-cta .button-light:focus-visible {
  background: rgba(24, 33, 43, 0.11);
  color: var(--ink);
  border-color: rgba(24, 33, 43, 0.22);
}

.resource-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: rgba(231, 210, 174, 0.58);
  color: var(--accent-deep);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid rgba(138, 97, 49, 0.14);
}

.section__header--tight {
  margin-bottom: 1.4rem;
}

.blog-engine {
  display: grid;
  gap: 1.5rem;
}

.blog-topic-grid,
.blog-support-grid,
.blog-post-grid {
  display: grid;
  gap: 1rem;
}

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

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

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

.blog-topic-card,
.blog-support-card,
.blog-post-card,
.blog-featured,
.blog-empty {
  border: 1px solid rgba(24, 33, 43, 0.08);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 40px rgba(20, 27, 35, 0.06);
}

.blog-topic-card,
.blog-support-card,
.blog-post-card,
.blog-empty {
  padding: 1.3rem 1.35rem;
}

.blog-featured {
  padding: 1.7rem;
  background:
    radial-gradient(circle at top right, rgba(231, 210, 174, 0.42), transparent 38%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.82) 0%, rgba(249, 244, 236, 0.92) 100%);
}

.blog-featured__eyebrow,
.blog-support-card__eyebrow,
.blog-post-card__eyebrow {
  display: inline-flex;
  margin-bottom: 0.7rem;
  color: var(--accent-deep);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.blog-featured h2,
.blog-topic-card h3,
.blog-support-card h3,
.blog-post-card h3,
.blog-empty h3 {
  margin: 0;
  color: var(--ink);
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(1.15rem, 1.8vw, 1.45rem);
  line-height: 1.18;
}

.blog-featured p,
.blog-topic-card p,
.blog-support-card p,
.blog-post-card p,
.blog-empty p {
  margin: 0.8rem 0 0;
  color: var(--ink-soft);
}

.blog-featured__meta,
.blog-post-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.8rem;
  margin-top: 0.95rem;
  color: var(--ink-soft);
  font-size: 0.84rem;
  font-weight: 700;
}

.blog-featured__meta span,
.blog-post-card__meta span {
  position: relative;
}

.blog-featured__meta span + span::before,
.blog-post-card__meta span + span::before {
  content: "\2022";
  margin-right: 0.8rem;
  color: rgba(138, 97, 49, 0.7);
}

.blog-featured .button {
  margin-top: 1.15rem;
}

.blog-support {
  display: grid;
  gap: 0.95rem;
}

.blog-support-card__link,
.blog-post-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 1rem;
  color: #165bb5;
  font-weight: 800;
  text-decoration: none;
  border-bottom: 1px solid rgba(22, 91, 181, 0.72);
}

.blog-support-card__link::after,
.blog-post-card__link::after {
  content: "\2192";
  font-size: 0.95rem;
  line-height: 1;
}

.blog-support-card__link:hover,
.blog-support-card__link:focus-visible,
.blog-support-card__link:visited:hover,
.blog-support-card__link:visited:focus-visible,
.blog-post-card__link:hover,
.blog-post-card__link:focus-visible,
.blog-post-card__link:visited:hover,
.blog-post-card__link:visited:focus-visible {
  color: #0f4a95;
  border-bottom-color: rgba(15, 74, 149, 0.95);
}

.blog-support-card__link:visited,
.blog-post-card__link:visited {
  color: #165bb5;
}

.blog-controls {
  display: grid;
  gap: 1rem;
}

.blog-filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.blog-chip {
  border: 1px solid rgba(24, 33, 43, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--ink);
  padding: 0.68rem 0.95rem;
  font-size: 0.86rem;
  font-weight: 800;
}

.blog-chip.is-active,
.blog-chip:hover,
.blog-chip:focus-visible {
  background: rgba(231, 210, 174, 0.74);
  border-color: rgba(138, 97, 49, 0.25);
  color: var(--accent-deep);
}

.blog-search {
  display: grid;
  gap: 0.45rem;
  max-width: 24rem;
  color: var(--ink-soft);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.blog-search input {
  width: 100%;
  border: 1px solid rgba(24, 33, 43, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.84);
  color: var(--ink);
  padding: 0.92rem 1rem;
  font: inherit;
  letter-spacing: normal;
  text-transform: none;
}

.blog-search input:focus-visible {
  outline: 2px solid rgba(138, 97, 49, 0.28);
  outline-offset: 2px;
}

.blog-empty {
  text-align: left;
}

.blog-empty--results {
  background: rgba(255, 255, 255, 0.6);
}

.blog-post-surface {
  padding: 1.6rem;
}

.blog-post__content {
  display: flow-root;
}

.blog-post__content > * + * {
  margin-top: 1rem;
}

.blog-post__content h2,
.blog-post__content h3,
.blog-post__content p,
.blog-post__content ul,
.blog-post__content ol,
.blog-post__content figure {
  margin: 0;
}

.blog-post__content h2,
.blog-post__content h3 {
  color: var(--ink);
  font-family: "Fraunces", Georgia, serif;
  line-height: 1.16;
  letter-spacing: -0.02em;
}

.blog-post__content h2 {
  font-size: clamp(1.4rem, 1.9vw, 1.85rem);
}

.blog-post__content h3 {
  font-size: 1.12rem;
}

.blog-post__content p,
.blog-post__content li {
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.72;
}

.blog-post__content ul,
.blog-post__content ol {
  display: grid;
  gap: 0.72rem;
  padding-left: 1.22rem;
}

.blog-post__content strong {
  color: var(--ink);
}

.blog-post__content a {
  color: var(--accent-deep);
  text-decoration: underline;
  text-decoration-color: rgba(138, 97, 49, 0.35);
  text-underline-offset: 0.18em;
}

.blog-post__content a:hover,
.blog-post__content a:focus-visible {
  color: var(--accent);
}

.blog-post__figure {
  display: grid;
  gap: 0.65rem;
}

.blog-post__figure--wrap {
  float: right;
  width: min(42%, 18rem);
  max-width: 18rem;
  margin: 0.25rem 0 1rem 1.4rem;
}

.blog-post__figure img {
  display: block;
  width: 100%;
  border-radius: 22px;
  border: 1px solid rgba(24, 33, 43, 0.08);
  background: rgba(255, 255, 255, 0.8);
}

.blog-post__figure figcaption {
  color: var(--ink-soft);
  font-size: 0.88rem;
}

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

  body.site-refresh[data-nav-current="/railroad-retirement-planning/"] .video-grid--portrait {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(15rem, 56%);
    grid-template-columns: none;
    justify-content: flex-start;
    gap: 1rem;
    overflow-x: auto;
    padding-bottom: 0.35rem;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
  }

  body.site-refresh[data-nav-current="/railroad-retirement-planning/"] .video-card--portrait {
    scroll-snap-align: start;
    max-width: none;
  }

  body.site-refresh[data-nav-current="/railroad-retirement-planning/"] .video-grid--portrait::-webkit-scrollbar {
    height: 0.42rem;
  }

  body.site-refresh[data-nav-current="/railroad-retirement-planning/"] .video-grid--portrait::-webkit-scrollbar-thumb {
    background: rgba(215, 185, 139, 0.34);
    border-radius: 999px;
  }

  body.site-refresh[data-nav-current="/railroad-retirement-planning/"] .video-mobile-hint {
    display: block;
    margin-top: 0.7rem;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(247, 243, 237, 0.58);
  }

  .guide-cluster,
  .article-layout,
  .blog-topic-grid,
  .blog-support-grid,
  .blog-post-grid {
    grid-template-columns: 1fr;
  }

  .article-aside {
    position: static;
  }
}

@media (max-width: 720px) {
  body.site-refresh[data-nav-current="/railroad-retirement-planning/"] #main {
    display: flex;
    flex-direction: column;
  }

  body.site-refresh[data-nav-current="/railroad-retirement-planning/"] .railroad-plan__section--videos {
    order: 1;
  }

  body.site-refresh[data-nav-current="/railroad-retirement-planning/"] .railroad-plan__section--overview {
    order: 2;
  }

  body.site-refresh[data-nav-current="/railroad-retirement-planning/"] .railroad-plan__section--checklist {
    order: 3;
  }

  body.site-refresh[data-nav-current="/railroad-retirement-planning/"] .railroad-plan__section--support {
    order: 4;
  }

  body.site-refresh[data-nav-current="/railroad-retirement-planning/"] .railroad-plan__section--cta {
    order: 5;
  }

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

  .blog-post__figure--wrap {
    float: none;
    width: auto;
    max-width: 26rem;
    margin: 1rem auto 0;
  }

  .blog-controls {
    gap: 0.8rem;
  }

  .blog-search {
    max-width: none;
  }

  .resource-actions {
    flex-direction: column;
    align-items: stretch;
  }
}



