:root {
  --color-primary: #4B5B81;
  --color-primary-dark: #38445E;
  --color-secondary: #CACED8;
  --color-accent: #1851E2;
  --color-accent-soft: #8FACF5;
  --color-bg: #F8FBFC;
  --color-bg-alt: #EFF5F7;
  --color-surface: #FFFFFF;
  --color-text: #1A2B2E;
  --color-text-muted: #4A6B70;
  --color-section-dark: #1A2B2E;
  --color-section-dark-text: #E7EEEF;
  --color-section-dark-muted: #9FB8BB;
  --color-section-accent: #E5F2F5;
  --color-border: #D7DEE6;
  --font-display: 'Syne', sans-serif;
  --font-body: 'Inter Tight', sans-serif;
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.25rem;
  --text-xl: 1.625rem;
  --text-xxl: 2.25rem;
  --text-hero: 3rem;
  --space-xs: 0.625rem;
  --space-sm: 1.25rem;
  --space-md: 1.875rem;
  --space-lg: 2.5rem;
  --space-xl: 3.75rem;
  --space-xxl: 5rem;
  --radius-sm: 0.25rem;
  --radius-md: 0.5rem;
  --radius-lg: 1rem;
  --radius-pill: 999px;
  --shadow-soft: 0 1px 2px rgba(26, 43, 46, 0.06), 0 12px 28px rgba(26, 43, 46, 0.09);
  --shadow-lift: 0 20px 40px rgba(26, 43, 46, 0.16);
  --rail-width: 17.5rem;
  --topbar-height: 4.5rem;
  --measure: 68ch;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.5;
  color: var(--color-text);
  background: var(--color-bg);
  padding-top: var(--topbar-height);
}

img, picture, video, iframe {
  max-width: 100%;
  display: block;
}

img {
  border-radius: var(--radius-md);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  line-height: 1.2;
  margin: 0 0 var(--space-sm);
  color: var(--color-text);
  font-weight: 700;
}

h1 { font-size: var(--text-hero); }
h2 { font-size: var(--text-xxl); }
h3 { font-size: var(--text-xl); }
h4 { font-size: var(--text-lg); }
h5, h6 { font-size: var(--text-base); }

p {
  margin: 0 0 var(--space-sm);
  max-width: var(--measure);
}

ul, ol {
  margin: 0 0 var(--space-sm);
  padding-left: 1.25rem;
}

li::marker {
  color: var(--color-accent);
  font-weight: 700;
}

a {
  color: var(--color-accent);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.15em;
}

a:hover {
  color: var(--color-primary);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

button {
  font-family: inherit;
}

::selection {
  background: var(--color-accent);
  color: #fff;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--color-accent);
  color: #fff;
  padding: 0.6rem 1rem;
  z-index: 300;
  border-radius: 0 0 var(--radius-md) 0;
  text-decoration: none;
  font-weight: 600;
}

.skip-link:focus {
  left: 0;
}

.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.body-region {
  max-width: 75rem;
  margin: 0 auto;
  padding: var(--space-lg) var(--space-md) 0;
  counter-reset: chapter;
}

.masthead {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--topbar-height);
  background: var(--color-primary);
  z-index: 200;
  box-shadow: var(--shadow-soft);
}

.masthead-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 0 var(--space-md);
  gap: var(--space-sm);
}

.masthead-brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-base);
  color: #fff;
  text-decoration: none;
  letter-spacing: 0.01em;
}

.masthead-links {
  position: fixed;
  top: var(--topbar-height);
  left: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  background: var(--color-primary-dark);
  max-height: 0;
  overflow-y: auto;
  padding: 0 var(--space-md);
  gap: 0;
  box-shadow: 0 18px 30px rgba(10, 16, 22, 0.28);
  transition: max-height 0.35s var(--ease), padding 0.35s var(--ease);
}

.masthead-links.active {
  max-height: 500px;
  padding: var(--space-sm) var(--space-md);
  gap: var(--space-xs);
}

.masthead-links a {
  color: var(--color-secondary);
  text-decoration: none;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: var(--text-sm);
  padding: 0.85rem 1rem;
  transition: background-color 0.25s var(--ease), color 0.25s var(--ease);
}

.masthead-links a:hover,
.masthead-links a:focus-visible {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.masthead-links a.is-active {
  background: var(--color-accent);
  color: #fff;
}

.masthead--sidebar-left-left-pill .masthead-links a {
  border-radius: var(--radius-pill);
}

.masthead-phone {
  display: none;
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  font-size: var(--text-sm);
  font-weight: 600;
}

.masthead-phone:hover {
  color: #fff;
}

.masthead-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 2.5rem;
  height: 2.5rem;
  background: transparent;
  border: 0;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
}

.masthead-toggle span {
  display: block;
  width: 1.4rem;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}

.masthead-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.masthead-toggle.active span:nth-child(2) {
  opacity: 0;
}

.masthead-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.masthead.scrolled,
.masthead-links.scrolled {
  box-shadow: 0 20px 45px rgba(10, 16, 22, 0.3);
}

@media (min-width: 1024px) {
  body {
    padding-top: 0;
    margin-left: var(--rail-width);
  }

  .masthead {
    top: 0;
    left: 0;
    right: auto;
    width: var(--rail-width);
    height: 100vh;
  }

  .masthead-inner {
    flex-direction: column;
    align-items: stretch;
    height: 100%;
    padding: var(--space-lg) var(--space-md);
    gap: var(--space-lg);
  }

  .masthead-brand {
    font-size: var(--text-lg);
  }

  .masthead-links {
    position: static;
    flex-direction: column;
    background: transparent;
    max-height: none;
    overflow-y: auto;
    padding: 0;
    gap: var(--space-xs);
    flex: 1;
    box-shadow: none;
    transition: none;
  }

  .masthead-links a {
    padding: 0.65rem 1.1rem;
  }

  .masthead-phone {
    display: block;
    margin-top: auto;
    padding-top: var(--space-sm);
    border-top: 1px solid rgba(255, 255, 255, 0.15);
  }

  .masthead-toggle {
    display: none;
  }
}

.base-strip {
  background: var(--color-section-dark);
  color: var(--color-section-dark-text);
  padding: var(--space-xxl) var(--space-md) var(--space-lg);
  margin-top: var(--space-xl);
}

.base-strip-inner--1col {
  max-width: 75rem;
  margin: 0 auto;
}

.base-strip--statement-1col-inline .base-strip-column--statement {
  position: relative;
  z-index: 2;
  background: var(--color-bg);
  color: var(--color-text);
  margin-top: calc(-1 * var(--space-xxl) - var(--space-sm));
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lift);
  max-width: 42rem;
}

.base-strip-heading {
  font-size: var(--text-xl);
  margin-bottom: var(--space-xs);
}

.base-strip-column--statement p {
  color: var(--color-text-muted);
  margin-bottom: 0;
}

.base-strip-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-sm);
  margin-top: var(--space-lg);
  padding-top: var(--space-sm);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: var(--text-sm);
  color: var(--color-section-dark-muted);
}

.base-strip-meta p {
  margin: 0;
  max-width: none;
}

.base-strip-legal {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.base-strip-legal a {
  color: var(--color-section-dark-text);
  text-decoration: none;
}

.base-strip-legal a:hover {
  text-decoration: underline;
  color: #fff;
}

@media (max-width: 767px) {
  .base-strip--statement-1col-inline .base-strip-column--statement {
    margin-top: calc(-1 * var(--space-xl));
    padding: var(--space-md);
    max-width: none;
  }
}

.chapter,
.body-region-section {
  position: relative;
  padding: var(--space-xl) 0;
  border-top: 1px solid var(--color-border);
  overflow-x: auto;
}

.chapter:first-child,
.body-region-section:first-child {
  border-top: 0;
}

.chapter::before,
.body-region-section::before {
  counter-increment: chapter;
  content: "Entry " counter(chapter, decimal-leading-zero);
  display: block;
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: var(--space-sm);
}

.chapter--noindex::before {
  content: none;
  margin-bottom: 0;
}

.chapter--tight {
  padding-top: var(--space-md);
  padding-bottom: var(--space-md);
}

.chapter--alt {
  background: var(--color-bg-alt);
  margin: 0 calc(-1 * var(--space-md));
  padding: var(--space-xl) var(--space-md);
  border-top: 0;
}

.chapter--dark {
  background: var(--color-section-dark);
  color: var(--color-section-dark-text);
  margin: 0 calc(-1 * var(--space-md));
  padding: var(--space-xl) var(--space-md);
  border-top: 0;
}

.chapter--dark::before {
  color: var(--color-accent-soft);
}

.chapter--dark h1, .chapter--dark h2, .chapter--dark h3, .chapter--dark h4 {
  color: #fff;
}

.chapter--dark p, .chapter--dark li, .chapter--dark dd {
  color: var(--color-section-dark-text);
}

.chapter--dark a {
  color: var(--color-accent-soft);
}

.chapter--dark li::marker {
  color: var(--color-accent-soft);
}

.chapter--dark table th, .chapter--dark table td {
  color: var(--color-section-dark-text);
  border-color: rgba(255, 255, 255, 0.16);
}

.chapter--dark thead th {
  color: var(--color-section-dark-muted);
  border-bottom-color: var(--color-accent-soft);
}

.chapter--dark tbody tr:hover {
  background: rgba(255, 255, 255, 0.05);
}

.chapter--dark summary {
  color: #fff;
}

.chapter--dark details {
  border-color: rgba(255, 255, 255, 0.2);
}

.chapter--dark blockquote {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}

.chapter--dark blockquote cite {
  color: var(--color-section-dark-text);
}

.chapter--dark dt {
  color: #fff;
}

.chapter--dark .paired-block-aside {
  background: rgba(255, 255, 255, 0.06);
  border-left-color: var(--color-accent-soft);
}

.chapter--dark .feature-note {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.16);
  color: var(--color-section-dark-text);
}

.chapter--dark .marker-spot {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.18);
  color: var(--color-section-dark-text);
}

.chapter--dark .marker-spot p {
  color: var(--color-section-dark-text);
}

.chapter--dark .square-item {
  background: rgba(255, 255, 255, 0.06);
}

.chapter--dark .data-point {
  color: #fff;
}

.chapter--dark .square-item span {
  color: var(--color-section-dark-muted);
}

.chapter--dark .switch-bar a {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.chapter--dark .reach-out {
  background: rgba(255, 255, 255, 0.07);
}

.chapter h2, .body-region-section h2 {
  position: relative;
  padding-bottom: var(--space-sm);
  margin-bottom: var(--space-md);
}

.chapter h2::after, .body-region-section h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 5.5rem;
  height: 2px;
  background-image: repeating-linear-gradient(90deg, currentColor 0 10px, transparent 10px 16px);
  opacity: 0.55;
}

.body-region > .gallery-frame--four-column-equal:first-child {
  margin-top: 0;
  counter-reset: entry;
}

.body-region > .gallery-frame--four-column-equal:first-child .feature-note {
  position: relative;
  padding-top: var(--space-lg);
}

.body-region > .gallery-frame--four-column-equal:first-child .feature-note::before {
  counter-increment: entry;
  content: counter(entry, decimal-leading-zero);
  position: absolute;
  top: var(--space-sm);
  left: var(--space-md);
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--color-secondary);
}

.headline-block {
  max-width: 52rem;
  margin: 0 0 var(--space-xl);
}

.headline-block-kicker {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: var(--space-xs);
}

.headline-block h1 {
  margin-bottom: var(--space-sm);
}

.headline-block-dek {
  font-size: var(--text-lg);
  font-family: var(--font-body);
  color: var(--color-text-muted);
  max-width: var(--measure);
  margin-bottom: 0;
}

.gallery-frame {
  display: grid;
  gap: var(--space-md);
  margin: var(--space-lg) 0;
}

.gallery-frame--four-column-equal {
  grid-template-columns: repeat(4, 1fr);
}

.gallery-frame--three-column {
  grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 1023px) {
  .gallery-frame--four-column-equal,
  .gallery-frame--three-column {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .gallery-frame--four-column-equal,
  .gallery-frame--three-column {
    grid-template-columns: 1fr;
  }
}

.feature-note {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.feature-note:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lift);
}

.feature-note h3 {
  font-size: var(--text-lg);
  margin-bottom: var(--space-xs);
}

.feature-note p {
  margin-bottom: 0;
  color: var(--color-text-muted);
  font-size: var(--text-sm);
}

.feature-note--compact {
  padding: var(--space-sm);
}

.paired-block--image-grid-text-overlay {
  position: relative;
}

.paired-block-imagegrid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-xs);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.paired-block-imagegrid img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 0;
}

.paired-block--image-grid-text-overlay .paired-block-text--overlay {
  position: absolute;
  left: var(--space-md);
  right: var(--space-md);
  bottom: var(--space-md);
  max-width: 26rem;
  background: var(--color-surface);
  padding: var(--space-md);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lift);
}

.paired-block-text--overlay h2 {
  font-size: var(--text-lg);
  margin-bottom: var(--space-xs);
}

.paired-block-text--overlay h2::after {
  content: none;
}

.paired-block-text--overlay p {
  margin-bottom: 0;
  color: var(--color-text-muted);
  font-size: var(--text-sm);
}

@media (max-width: 767px) {
  .paired-block--image-grid-text-overlay .paired-block-text--overlay {
    position: static;
    margin-top: calc(-1 * var(--space-md));
    max-width: none;
    left: auto;
    right: auto;
    bottom: auto;
  }
}

.paired-block--accordion-expandable-sections details {
  border-bottom: 1px solid var(--color-border);
  padding: var(--space-sm) 0;
}

.paired-block--accordion-expandable-sections details:first-of-type {
  border-top: 1px solid var(--color-border);
}

summary {
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-lg);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-sm);
  color: var(--color-text);
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  font-family: var(--font-body);
  font-weight: 400;
  font-size: var(--text-xl);
  color: var(--color-accent);
  flex-shrink: 0;
}

details[open] summary::after {
  content: "\2013";
}

details p {
  margin-top: var(--space-sm);
  color: var(--color-text-muted);
}

.paired-block--double-sidebar-centered {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: var(--space-lg);
  align-items: start;
}

.paired-block-aside {
  background: var(--color-bg-alt);
  border-left: 3px solid var(--color-accent);
  padding: var(--space-md);
  border-radius: var(--radius-sm);
}

.paired-block-aside h3 {
  font-size: var(--text-base);
  margin-bottom: var(--space-xs);
}

.paired-block-aside p {
  margin-bottom: 0;
  color: var(--color-text-muted);
  font-size: var(--text-sm);
}

.paired-block--double-sidebar-centered .paired-block-text h2 {
  margin-bottom: var(--space-sm);
}

@media (max-width: 1023px) {
  .paired-block--double-sidebar-centered {
    grid-template-columns: 1fr;
  }

  .paired-block--double-sidebar-centered .paired-block-text {
    order: 1;
  }

  .paired-block--double-sidebar-centered .paired-block-aside:nth-of-type(1) {
    order: 2;
  }

  .paired-block--double-sidebar-centered .paired-block-aside:nth-of-type(2) {
    order: 3;
  }
}

table {
  width: 100%;
  min-width: 30rem;
  border-collapse: collapse;
  table-layout: fixed;
  margin: var(--space-md) 0;
  font-size: var(--text-sm);
}

caption {
  text-align: left;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-base);
  margin-bottom: var(--space-xs);
}

th, td {
  padding: 0.75rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--color-border);
  word-wrap: break-word;
  color: var(--color-text);
}

thead th {
  font-family: var(--font-display);
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text-muted);
  border-bottom: 2px solid var(--color-primary);
}

tbody tr:hover {
  background: var(--color-bg-alt);
}

tfoot td {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  border-top: 2px solid var(--color-border);
  border-bottom: 0;
  padding-top: var(--space-sm);
}

.chapter ul:not(.masthead-links):not(.base-strip-legal):not(.switch-bar):not(.square-item-row) {
  list-style: none;
  padding-left: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.chapter ul:not(.masthead-links):not(.base-strip-legal):not(.switch-bar):not(.square-item-row) li {
  position: relative;
  padding-left: 1.75rem;
  padding-bottom: var(--space-xs);
  border-bottom: 1px dashed var(--color-border);
}

.chapter ul:not(.masthead-links):not(.base-strip-legal):not(.switch-bar):not(.square-item-row) li::before {
  content: "\2014";
  position: absolute;
  left: 0;
  color: var(--color-accent);
  font-weight: 700;
}

.chapter ul:not(.masthead-links):not(.base-strip-legal):not(.switch-bar):not(.square-item-row) li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.chapter--dark ul li {
  border-bottom-color: rgba(255, 255, 255, 0.16);
}

dl {
  display: grid;
  gap: var(--space-sm);
  margin: var(--space-md) 0;
}

dt {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-lg);
  color: var(--color-primary);
}

dd {
  margin: 0 0 var(--space-md);
  padding-left: var(--space-sm);
  border-left: 2px solid var(--color-secondary);
  color: var(--color-text-muted);
}

blockquote {
  margin: var(--space-md) 0;
  padding: var(--space-md) var(--space-lg);
  border-left: 3px solid var(--color-accent);
  background: var(--color-bg-alt);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-style: normal;
  color: var(--color-text);
}

blockquote p {
  margin-bottom: var(--space-xs);
}

blockquote cite {
  display: block;
  margin-top: var(--space-xs);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-text-muted);
  font-style: normal;
}

figure {
  margin: var(--space-md) 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-sm);
  align-items: start;
}

figure img {
  border-radius: var(--radius-md);
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

figcaption {
  grid-column: 1 / -1;
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  margin-top: var(--space-xs);
}

@media (max-width: 767px) {
  figure {
    grid-template-columns: 1fr;
  }
}

form {
  display: grid;
  gap: var(--space-sm);
  max-width: 36rem;
  margin: var(--space-md) 0;
}

label {
  font-weight: 600;
  font-size: var(--text-sm);
  display: block;
  margin-bottom: 0.35rem;
}

input, textarea, select {
  width: 100%;
  font-family: var(--font-body);
  font-size: var(--text-base);
  padding: 0.7rem 0.9rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: var(--color-surface);
  color: var(--color-text);
}

textarea {
  min-height: 8rem;
  resize: vertical;
}

form button {
  justify-self: start;
}

.go-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-sm);
  text-decoration: none;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-pill);
  background: var(--color-accent);
  color: #fff;
  border: 0;
  cursor: pointer;
  transition: background-color 0.25s var(--ease), transform 0.2s var(--ease);
}

.go-link:hover {
  background: var(--color-primary);
  color: #fff;
  transform: translateY(-2px);
}

.go-link--ghost {
  background: transparent;
  color: var(--color-primary);
  border: 1.5px solid var(--color-primary);
}

.go-link--ghost:hover {
  background: var(--color-primary);
  color: #fff;
}

.go-link--directions {
  background: var(--color-primary);
}

.go-link--directions:hover {
  background: var(--color-accent);
}

.chapter--dark .go-link--ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.5);
}

.reach-out {
  margin: var(--space-lg) 0;
  padding: var(--space-md) var(--space-md) var(--space-md) var(--space-lg);
  border-left: 3px solid var(--color-accent);
  background: var(--color-section-accent);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.reach-out p {
  margin: 0;
}

.reach-out p + p {
  margin-top: var(--space-xs);
}

.marker-spot {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-left: 4px solid var(--color-accent);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  margin: var(--space-lg) 0;
  box-shadow: var(--shadow-soft);
}

.marker-spot h3, .marker-spot h4 {
  font-size: var(--text-lg);
  margin-bottom: var(--space-xs);
}

.marker-spot p {
  margin-bottom: var(--space-xs);
  color: var(--color-text-muted);
}

.marker-spot p:last-child {
  margin-bottom: 0;
}

.marker-spot a {
  font-weight: 600;
}

.marker-spot--recommendation {
  border-left-color: var(--color-primary);
}

.marker-spot--map-embed iframe {
  width: 100%;
  height: 22rem;
  border-radius: var(--radius-sm);
  margin-bottom: var(--space-xs);
  border: 0;
}

.marker-spot--info-card {
  display: grid;
  gap: var(--space-xs);
}

.marker-spot--rating-banner {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-weight: 600;
}

.marker-spot--review blockquote,
.marker-spot--review-carousel blockquote {
  margin: 0;
  border: 0;
  background: transparent;
  padding: 0;
  font-size: var(--text-base);
}

.marker-spot--badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.9rem;
  border-radius: var(--radius-pill);
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 0;
}

.marker-spot--hours caption {
  color: var(--color-text);
}

.marker-spot--widget {
  max-width: 20rem;
}

.square-item-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(7rem, 1fr));
  gap: var(--space-sm);
  margin: var(--space-lg) 0;
  padding: 0;
  list-style: none;
}

.square-item {
  background: var(--color-bg-alt);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  text-align: center;
  aspect-ratio: 1 / 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
}

.data-point {
  font-family: var(--font-display);
  font-size: var(--text-xxl);
  font-weight: 700;
  color: var(--color-primary);
}

.square-item span {
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text-muted);
}

.switch-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: var(--space-md) 0;
  padding: 0;
  list-style: none;
}

.switch-bar a, .switch-bar-link {
  display: inline-flex;
  padding: 0.4rem 1rem;
  border-radius: var(--radius-pill);
  background: var(--color-bg-alt);
  color: var(--color-primary);
  font-weight: 700;
  font-size: var(--text-sm);
  text-decoration: none;
}

.switch-bar a:hover,
.switch-bar a:target,
.switch-bar-link:hover {
  background: var(--color-primary);
  color: #fff;
}

.pane-view {
  padding-top: var(--space-sm);
  scroll-margin-top: var(--space-lg);
}

:target {
  scroll-margin-top: var(--space-lg);
}

@media (max-width: 479px) {
  .headline-block h1 {
    font-size: 2.25rem;
  }

  .square-item-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .base-strip-meta {
    flex-direction: column;
    align-items: flex-start;
  }

  .marker-spot--rating-banner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}


.chapter-video {
    margin: var(--space-lg, 2rem) 0;
    max-width: 720px;
}
.chapter-video iframe,
.chapter-video video {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    height: auto;
    border: 0;
    border-radius: var(--radius-md, 8px);
    background: var(--color-section-dark, #1A2B2E);
}
