:root {
  --insight-ink: #160000;
  --insight-burgundy: #4a0c11;
  --insight-red: #b34b3e;
  --insight-coral: #dc7764;
  --insight-cream: #f6eee1;
  --insight-paper: #fffaf2;
  --insight-sand: #e9dcc9;
  --insight-muted: #705d59;
  --insight-line: rgb(22 0 0 / 16%);
  --insight-shadow: 0 1.5rem 4rem rgb(35 4 3 / 12%);
  --insight-display: Georgia, "Times New Roman", serif;
  --insight-sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

html {
  background: var(--insight-paper);
  color: var(--insight-ink);
  scroll-behavior: smooth;
}

body.insights-page {
  background: var(--insight-paper);
  color: var(--insight-ink);
  font-family: var(--insight-sans);
  line-height: 1.6;
  overflow-wrap: anywhere;
}

.insights-page main {
  background: var(--insight-paper);
}

.insights-page .shell {
  width: min(1180px, calc(100% - 8vw));
  margin-inline: auto;
}

.insights-page .site-header {
  position: relative;
  z-index: 10;
  min-height: 84px;
  background: var(--insight-ink);
  color: var(--insight-paper);
  box-shadow: 0 5px 18px rgb(22 0 0 / 12%);
}

.insights-page .header-inner {
  min-height: 84px;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.insights-page .brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  color: inherit;
  text-decoration: none;
}

.insights-page .brand img {
  display: block;
  width: 145px;
  height: 40px;
  object-fit: contain;
  object-position: left center;
}

.insights-page .primary-nav {
  display: flex;
  align-items: center;
  gap: clamp(1.1rem, 2.5vw, 2.35rem);
  margin-inline-start: auto;
}

.insights-page .primary-nav a {
  color: inherit;
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .095em;
  text-decoration: none;
  text-transform: uppercase;
}

.insights-page .primary-nav a:hover,
.insights-page .primary-nav a:focus-visible {
  color: var(--insight-coral);
}

.insights-page .age-label {
  border-inline-start: 1px solid rgb(255 250 242 / 28%);
  color: #e9d8c8;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  padding-inline-start: 1.5rem;
  text-transform: uppercase;
}

.insights-page .menu-toggle {
  display: none;
}

.insights-page .button,
.insights-page .text-link,
.insights-page .brand,
.insights-page .menu-toggle,
.insights-page .footer-consent {
  -webkit-tap-highlight-color: transparent;
}

.insights-page .button:focus-visible,
.insights-page .text-link:focus-visible,
.insights-page .brand:focus-visible,
.insights-page .menu-toggle:focus-visible,
.insights-page .footer-consent:focus-visible,
.insights-page .theme-toggle:focus-visible,
.insights-page .insights-form input:focus-visible,
.insights-page .insights-form textarea:focus-visible {
  outline: 3px solid #f2c879;
  outline-offset: 4px;
}

.insights-hero {
  position: relative;
  isolation: isolate;
  background: var(--insight-ink);
  color: var(--insight-paper);
}

.insights-hero::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(90deg, rgb(22 0 0 / 98%) 0%, rgb(22 0 0 / 88%) 39%, rgb(22 0 0 / 45%) 72%, rgb(22 0 0 / 68%) 100%), url('../assets/images/hero-casino-landscape.webp') center / cover;
  content: "";
  opacity: .98;
}

.insights-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, .8fr);
  align-items: center;
  gap: clamp(3rem, 8vw, 8rem);
  min-height: 690px;
  padding-block: clamp(5.5rem, 10vw, 8.5rem);
}

.insights-hero__copy {
  max-width: 680px;
}

.eyebrow,
.insights-hero__kicker,
.lens-section__index,
.lens-card__label,
.boundary-note__label {
  color: var(--insight-coral);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .19em;
  text-transform: uppercase;
}

.insights-hero__kicker {
  margin: 0 0 1.4rem;
}

.insights-hero h1,
.lens-section h2,
.boundary-section h2 {
  font-family: var(--insight-display);
  font-weight: 400;
  letter-spacing: -.05em;
  line-height: 1.01;
}

.insights-hero h1 {
  max-width: 9ch;
  margin: 0;
  font-size: clamp(3.8rem, 8vw, 7.6rem);
}

.insights-hero__thesis {
  max-width: 38rem;
  margin: 2rem 0 0;
  color: #f3e7d7;
  font-size: clamp(1.05rem, 1.5vw, 1.24rem);
  line-height: 1.7;
}

.insights-hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.4rem;
  margin-top: 2.4rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.5rem;
  padding: .9rem 1.5rem;
  border: 1px solid transparent;
  cursor: pointer;
  font: 700 .72rem/1.1 var(--insight-sans);
  letter-spacing: .13em;
  text-decoration: none;
  text-transform: uppercase;
  transition: background-color .2s ease, border-color .2s ease, color .2s ease, transform .2s ease;
}

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

.button-primary {
  background: var(--insight-coral);
  color: var(--insight-ink);
}

.button-primary:hover {
  background: #ef9a83;
}

.button-outline {
  background: transparent;
  border-color: currentColor;
  color: inherit;
}

.button-outline:hover {
  background: var(--insight-paper);
  color: var(--insight-ink);
}

.text-link {
  display: inline-flex;
  gap: .6rem;
  align-items: center;
  color: var(--insight-paper);
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-decoration: none;
  text-transform: uppercase;
}

.text-link span {
  color: var(--insight-coral);
  font-size: 1.3rem;
  line-height: .6;
}

.insights-hero__note {
  max-width: 31rem;
  margin: 3.2rem 0 0;
  padding-inline-start: 1rem;
  border-inline-start: 2px solid var(--insight-coral);
  color: #dcc9b9;
  font-size: .8rem;
  line-height: 1.55;
}

.insights-hero__note p {
  margin: 0;
}

.insights-hero__note p + p {
  margin-top: .45rem;
}

.insights-hero__figure {
  position: relative;
  margin: 0;
  transform: rotate(3deg);
}

.insights-hero__figure::after {
  position: absolute;
  z-index: -1;
  inset: 1rem -1rem -1rem 1rem;
  border: 1px solid rgb(246 238 225 / 45%);
  content: "";
}

.insights-hero__figure img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1.14;
  object-fit: cover;
}

.insights-hero__figure figcaption {
  position: absolute;
  bottom: -1.15rem;
  left: -2rem;
  max-width: 16rem;
  padding: 1rem 1.2rem;
  background: var(--insight-paper);
  color: var(--insight-ink);
  font-family: var(--insight-display);
  font-size: 1.15rem;
  line-height: 1.2;
  transform: rotate(-3deg);
}

.lens-section {
  padding-block: clamp(5rem, 9vw, 9rem);
}

.lens-section--cream {
  background: var(--insight-cream);
}

.lens-section--sand {
  background: var(--insight-sand);
}

.lens-section--paper {
  background: var(--insight-paper);
}

.lens-section--ink {
  background: var(--insight-ink);
  color: var(--insight-paper);
}

.lens-section--burgundy,
.boundary-section {
  background: var(--insight-burgundy);
  color: var(--insight-paper);
}

.lens-section__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .82fr);
  align-items: center;
  gap: clamp(3rem, 10vw, 9rem);
}

.lens-section__grid--reverse {
  grid-template-columns: minmax(320px, .82fr) minmax(0, 1fr);
}

.lens-section__grid--reverse > .lens-section__copy {
  grid-column: 2;
  grid-row: 1;
}

.lens-section__grid--reverse > .lens-card {
  grid-column: 1;
  grid-row: 1;
}

.lens-section__copy {
  max-width: 590px;
}

.lens-section__index {
  display: block;
  margin: 0 0 1.35rem;
  color: var(--insight-red);
}

.lens-section--ink .lens-section__index,
.lens-section--burgundy .lens-section__index {
  color: var(--insight-coral);
}

.lens-section h2,
.boundary-section h2 {
  max-width: 11ch;
  margin: 0;
  font-size: clamp(2.8rem, 5vw, 5.2rem);
}

.lens-section__text,
.boundary-section__text {
  max-width: 36rem;
  margin: 1.7rem 0 0;
  color: var(--insight-muted);
  font-size: 1.02rem;
  line-height: 1.75;
}

.lens-section--ink .lens-section__text,
.lens-section--burgundy .lens-section__text,
.boundary-section__text {
  color: #d9c9bd;
}

.lens-card {
  position: relative;
  max-width: 490px;
  padding: clamp(1.7rem, 4vw, 3.2rem);
  border: 1px solid var(--insight-line);
  background: rgb(255 250 242 / 52%);
  box-shadow: var(--insight-shadow);
}

.lens-section--ink .lens-card,
.lens-section--burgundy .lens-card {
  border-color: rgb(246 238 225 / 22%);
  background: rgb(246 238 225 / 7%);
  box-shadow: none;
}

.lens-card::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 34%;
  height: 3px;
  background: var(--insight-coral);
  content: "";
}

.lens-card__label {
  margin: 0;
  color: var(--insight-red);
}

.lens-section--ink .lens-card__label,
.lens-section--burgundy .lens-card__label {
  color: var(--insight-coral);
}

.lens-card h3 {
  margin: .8rem 0 0;
  font-family: var(--insight-display);
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  font-weight: 400;
  letter-spacing: -.035em;
  line-height: 1.08;
}

.lens-card p {
  margin: 1rem 0 0;
  color: var(--insight-muted);
  font-size: .92rem;
  line-height: 1.65;
}

.lens-section--ink .lens-card p,
.lens-section--burgundy .lens-card p {
  color: #d9c9bd;
}

.lens-card__rule {
  height: 1px;
  margin-top: 1.7rem;
  background: var(--insight-line);
}

.lens-section--ink .lens-card__rule,
.lens-section--burgundy .lens-card__rule {
  background: rgb(246 238 225 / 18%);
}

.lens-card__list {
  display: grid;
  gap: .7rem;
  margin: 1.1rem 0 0;
  padding: 0;
  list-style: none;
  color: var(--insight-muted);
  font-size: .82rem;
}

.lens-section--ink .lens-card__list,
.lens-section--burgundy .lens-card__list {
  color: #e8dbd1;
}

.lens-card__list li {
  display: flex;
  gap: .65rem;
  align-items: baseline;
}

.lens-card__list li::before {
  flex: 0 0 auto;
  width: .4rem;
  height: .4rem;
  border-radius: 50%;
  background: var(--insight-coral);
  content: "";
}

.location-card {
  padding-bottom: 4rem;
}

.location-card__route {
  position: relative;
  height: 7rem;
  margin: 0 0 1.5rem;
  border-block-end: 1px solid var(--insight-line);
}

.location-card__route::before,
.location-card__route::after {
  position: absolute;
  border: 1px solid var(--insight-coral);
  border-radius: 50%;
  content: "";
}

.location-card__route::before {
  top: 1.1rem;
  left: 11%;
  width: 1.1rem;
  height: 1.1rem;
  background: var(--insight-coral);
  box-shadow: 13rem 2.4rem 0 -.2rem var(--insight-paper), 13rem 2.4rem 0 .05rem var(--insight-coral);
}

.location-card__route::after {
  top: 2rem;
  left: 14%;
  width: 68%;
  height: 2.5rem;
  border-width: 1px 0 0 1px;
  border-radius: 55% 0 0 0;
  transform: rotate(13deg);
}

.stay-card__stack,
.dining-card__menu,
.entertainment-card__calendar,
.facility-card__grid,
.feedback-card__entries {
  display: grid;
}

.stay-card__stack {
  gap: .65rem;
  margin-top: 1.4rem;
}

.stay-card__stack span {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-block: .65rem;
  border-block-end: 1px solid var(--insight-line);
  color: var(--insight-muted);
  font-size: .82rem;
}

.stay-card__stack span::after {
  color: var(--insight-red);
  content: "01";
  font-family: var(--insight-display);
  font-size: 1.2rem;
}

.stay-card__stack span:nth-child(2)::after {
  content: "02";
}

.stay-card__stack span:nth-child(3)::after {
  content: "03";
}

.dining-card {
  background: var(--insight-ink);
  color: var(--insight-paper);
}

.dining-card h3,
.dining-card p,
.entertainment-card h3,
.entertainment-card p,
.facility-card h3,
.facility-card p,
.feedback-card h3,
.feedback-card p {
  color: inherit;
}

.dining-card__menu {
  gap: 1rem;
  margin-top: 1.5rem;
}

.dining-card__item {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 1rem;
  border-block-end: 1px solid rgb(246 238 225 / 20%);
  color: #e8dbd1;
  font-size: .85rem;
}

.dining-card__item strong {
  color: var(--insight-coral);
  font-family: var(--insight-display);
  font-size: 1.3rem;
  font-weight: 400;
}

.entertainment-card {
  background: var(--insight-paper);
}

.entertainment-card__calendar {
  grid-template-columns: 5rem 1fr;
  gap: 1rem;
  align-items: end;
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-block-start: 1px solid var(--insight-line);
}

.entertainment-card__date {
  color: var(--insight-red);
  font-family: var(--insight-display);
  font-size: 4rem;
  line-height: .9;
}

.entertainment-card__caption {
  color: var(--insight-muted);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .1em;
  line-height: 1.35;
  text-transform: uppercase;
}

.facility-card__grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .7rem;
  margin-top: 1.5rem;
}

.facility-card__item {
  min-height: 6.2rem;
  padding: .9rem;
  border: 1px solid var(--insight-line);
}

.facility-card__item strong {
  display: block;
  color: var(--insight-red);
  font-family: var(--insight-display);
  font-size: 1.6rem;
  font-weight: 400;
}

.facility-card__item span {
  display: block;
  margin-top: .35rem;
  color: var(--insight-muted);
  font-size: .75rem;
  line-height: 1.35;
}

.information-card {
  background: var(--insight-sand);
}

.information-card__checklist {
  display: grid;
  gap: .9rem;
  margin: 1.6rem 0 0;
  padding: 0;
  list-style: none;
}

.information-card__checklist li {
  display: flex;
  gap: .7rem;
  align-items: flex-start;
  padding-bottom: .9rem;
  border-block-end: 1px solid var(--insight-line);
  color: var(--insight-muted);
  font-size: .83rem;
}

.information-card__checklist li::before {
  color: var(--insight-red);
  content: "✓";
  font-weight: 800;
}

.experience-card {
  background: var(--insight-coral);
  color: var(--insight-ink);
}

.experience-card p {
  color: var(--insight-ink);
}

.experience-card blockquote {
  margin: 1.4rem 0 0;
  font-family: var(--insight-display);
  font-size: clamp(1.45rem, 3vw, 2.3rem);
  letter-spacing: -.03em;
  line-height: 1.12;
}

.experience-card cite {
  display: block;
  margin-top: 1.4rem;
  color: rgb(22 0 0 / 68%);
  font-size: .7rem;
  font-style: normal;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.feedback-card {
  background: var(--insight-ink);
}

.feedback-card__entries {
  gap: 1rem;
  margin-top: 1.5rem;
}

.feedback-card__entry {
  padding-top: 1rem;
  border-block-start: 1px solid rgb(246 238 225 / 19%);
}

.feedback-card__entry strong {
  color: var(--insight-coral);
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.feedback-card__entry p {
  margin-top: .35rem;
  color: #e8dbd1;
  font-size: .84rem;
}

.boundary-section {
  padding-block: clamp(5rem, 9vw, 8.5rem);
}

.boundary-section__grid {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(340px, 1fr);
  gap: clamp(3rem, 9vw, 8rem);
  align-items: start;
}

.boundary-section__copy {
  max-width: 540px;
}

.boundary-section h2 {
  max-width: 10ch;
}

.boundary-section__link {
  margin-top: 2rem;
}

.boundary-notes {
  display: grid;
  gap: 1.1rem;
}

.boundary-note {
  padding: 1.4rem 1.5rem;
  border: 1px solid rgb(246 238 225 / 22%);
}

.boundary-note__label {
  color: var(--insight-coral);
}

.boundary-note h3 {
  margin: .65rem 0 0;
  font-family: var(--insight-display);
  font-size: 1.7rem;
  font-weight: 400;
  letter-spacing: -.025em;
  line-height: 1.1;
}

.boundary-note p {
  margin: .55rem 0 0;
  color: #d9c9bd;
  font-size: .82rem;
  line-height: 1.55;
}

.theme-control {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 2.5rem;
}

.theme-control__label {
  color: #e8dbd1;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.theme-toggle {
  padding: .2rem;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.theme-toggle__track {
  display: block;
  width: 4rem;
  height: 2rem;
  padding: .25rem;
  border-radius: 2rem;
  background: var(--insight-paper);
}

.theme-toggle__thumb {
  display: block;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  background: var(--insight-coral);
  transform: translateX(0);
  transition: transform .2s ease;
}

.insights-form {
  margin-top: 2.5rem;
  padding: clamp(1.3rem, 3vw, 2rem);
  border: 1px solid rgb(246 238 225 / 22%);
  background: rgb(246 238 225 / 7%);
}

.insights-form__intro {
  margin: 0;
  color: #e8dbd1;
  font-size: .86rem;
}

.insights-form__fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1.3rem;
}

.insights-form__field {
  display: flex;
  flex-direction: column;
  gap: .4rem;
}

.insights-form__field--wide {
  grid-column: 1 / -1;
}

.insights-form label {
  color: #e8dbd1;
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.insights-form input,
.insights-form textarea {
  width: 100%;
  padding: .75rem .8rem;
  border: 1px solid rgb(246 238 225 / 35%);
  border-radius: 0;
  background: rgb(22 0 0 / 35%);
  color: var(--insight-paper);
  font: inherit;
}

.insights-form textarea {
  min-height: 7rem;
  resize: vertical;
}

.insights-form input[aria-invalid="true"],
.insights-form textarea[aria-invalid="true"] {
  border-color: #f2a09a;
}

.insights-form__error {
  min-height: 1.1em;
  color: #f2a09a;
  font-size: .72rem;
}

.insights-form__consent {
  display: flex;
  gap: .65rem;
  align-items: flex-start;
  margin-top: 1rem;
  color: #e8dbd1;
  font-size: .78rem !important;
  font-weight: 400 !important;
  letter-spacing: 0 !important;
  line-height: 1.45;
  text-transform: none !important;
}

.insights-form__consent input {
  flex: 0 0 auto;
  width: 1rem;
  height: 1rem;
  margin: .1rem 0 0;
  accent-color: var(--insight-coral);
}

.insights-form__status {
  min-height: 1.2em;
  margin: .8rem 0 0;
  color: #f2c879;
  font-size: .78rem;
}

.site-footer {
  background: var(--insight-ink);
  color: var(--insight-paper);
  padding-block: 4rem 1.5rem;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr auto;
  gap: 3rem;
  align-items: start;
}

.site-footer .brand img {
  width: 145px;
}

.site-footer p {
  max-width: 17rem;
  margin: 1rem 0 0;
  color: #cdbcb0;
  font-size: .82rem;
  line-height: 1.6;
}

.site-footer nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(90px, 1fr));
  gap: .65rem;
}

.site-footer nav a {
  color: var(--insight-paper);
  font-size: .74rem;
  text-decoration: none;
}

.site-footer nav a:hover,
.site-footer nav a:focus-visible {
  color: var(--insight-coral);
}

.footer-consent {
  padding: .75rem 1rem;
  border: 1px solid rgb(246 238 225 / 40%);
  background: transparent;
  color: var(--insight-paper);
  cursor: pointer;
  font: 700 .7rem var(--insight-sans);
  letter-spacing: .08em;
  text-transform: uppercase;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 3.5rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgb(246 238 225 / 17%);
}

.footer-bottom p {
  max-width: none;
  margin: 0;
}

.consent-dialog {
  max-width: min(32rem, calc(100% - 2rem));
  padding: 2rem;
  border: 1px solid var(--insight-line);
  background: var(--insight-paper);
  color: var(--insight-ink);
}

.consent-dialog::backdrop {
  background: rgb(22 0 0 / 60%);
}

.consent-dialog h2 {
  margin: 0 0 .7rem;
  font-family: var(--insight-display);
  font-size: 2rem;
  font-weight: 400;
}

.consent-dialog p {
  color: var(--insight-muted);
}

.consent-dialog button {
  margin: .5rem .5rem 0 0;
}

html[data-theme="dark"] {
  --insight-paper: #1c1514;
  --insight-cream: #29201d;
  --insight-sand: #352823;
  --insight-ink: #f6eee1;
  --insight-muted: #d1c1b7;
  --insight-line: rgb(246 238 225 / 20%);
  background: #1c1514;
  color: #f6eee1;
  color-scheme: dark;
}

html[data-theme="dark"] body.insights-page,
html[data-theme="dark"] .insights-page main {
  background: #1c1514;
  color: #f6eee1;
}

html[data-theme="dark"] .insights-page .site-header,
html[data-theme="dark"] .insights-page .site-footer {
  background: #100b0b;
}

html[data-theme="dark"] .insights-hero::before {
  background: linear-gradient(90deg, rgb(10 5 5 / 98%) 0%, rgb(10 5 5 / 89%) 45%, rgb(10 5 5 / 60%) 100%), url('../assets/images/hero-casino-landscape.webp') center / cover;
}

html[data-theme="dark"] .lens-section--ink {
  background: #100b0b;
}

html[data-theme="dark"] .lens-section--burgundy,
html[data-theme="dark"] .boundary-section {
  background: #321117;
}

html[data-theme="dark"] .lens-card,
html[data-theme="dark"] .information-card,
html[data-theme="dark"] .entertainment-card {
  background: #29201d;
  color: #f6eee1;
}

html[data-theme="dark"] .dining-card,
html[data-theme="dark"] .feedback-card {
  background: #100b0b;
}

html[data-theme="dark"] .insights-form input,
html[data-theme="dark"] .insights-form textarea {
  background: #1c1514;
}

html[data-theme="dark"] .theme-toggle__track {
  background: #f6eee1;
}

html[data-theme="dark"] .theme-toggle__thumb {
  transform: translateX(2rem);
}

@media (max-width: 920px) {
  .insights-page .shell {
    width: min(100% - 2.5rem, 680px);
  }

  .insights-page .header-inner {
    gap: 1rem;
  }

  .insights-page .menu-toggle {
    display: grid;
    gap: .28rem;
    margin-inline-start: auto;
    padding: .55rem;
    border: 0;
    background: transparent;
    color: inherit;
  }

  .insights-page .menu-toggle > span:not(.sr-only) {
    display: block;
    width: 1.4rem;
    height: 2px;
    background: currentColor;
  }

  .insights-page .primary-nav {
    position: absolute;
    top: 84px;
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: .6rem 1.25rem 1.3rem;
    background: var(--insight-ink);
  }

  .insights-page .primary-nav.is-open {
    display: flex;
  }

  .insights-page .primary-nav a {
    padding: .8rem 0;
  }

  .insights-page .age-label {
    margin-inline-start: .5rem;
    padding-inline-start: .9rem;
  }

  .insights-hero__inner,
  .lens-section__grid,
  .lens-section__grid--reverse,
  .boundary-section__grid {
    grid-template-columns: 1fr;
  }

  .insights-hero__inner {
    min-height: 0;
    padding-block: 5.5rem 6rem;
  }

  .insights-hero__figure {
    width: 86%;
    max-width: 460px;
    margin: 1rem 1rem 0 auto;
  }

  .lens-section__grid--reverse > .lens-section__copy,
  .lens-section__grid--reverse > .lens-card {
    grid-column: auto;
    grid-row: auto;
  }

  .lens-card {
    max-width: 100%;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .insights-page .shell {
    width: min(100% - 2rem, 430px);
  }

  .insights-page .site-header,
  .insights-page .header-inner {
    min-height: 72px;
  }

  .insights-page .brand img,
  .insights-page .site-footer .brand img {
    width: 126px;
    height: 34px;
  }

  .insights-page .primary-nav {
    top: 72px;
  }

  .insights-page .age-label {
    font-size: .6rem;
  }

  .insights-hero__inner {
    padding-block: 4.5rem 5rem;
  }

  .insights-hero h1 {
    font-size: clamp(3rem, 16vw, 4.8rem);
  }

  .insights-hero__actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 1.25rem;
  }

  .insights-hero__figure {
    width: 92%;
  }

  .insights-hero__figure figcaption {
    left: -1rem;
    max-width: 13rem;
    font-size: .95rem;
  }

  .lens-section,
  .boundary-section {
    padding-block: 4.5rem;
  }

  .lens-section h2,
  .boundary-section h2 {
    font-size: clamp(2.65rem, 13vw, 4rem);
  }

  .facility-card__grid,
  .insights-form__fields {
    grid-template-columns: 1fr;
  }

  .insights-form__field--wide {
    grid-column: auto;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: .5rem;
  }

  .consent-banner {
    flex-direction: column;
  }

  .consent-actions {
    display: flex;
    flex-wrap: wrap;
  }
}
