:root {
  --bg: #faf8fe;
  --surface: #ffffff;
  --surface-soft: #f4f3f8;
  --surface-muted: #eeedf3;
  --ink: #1a1b1f;
  --muted: #5d5e60;
  --faint: #86868b;
  --line: #d2d2d7;
  --line-soft: #e4e3e8;
  --green: #61bb46;
  --amber: #fdb813;
  --orange: #f58220;
  --red: #e03a3e;
  --purple: #963d97;
  --blue: #009ddc;
  --shadow: 0 18px 50px rgba(19, 20, 24, 0.08);
  --shadow-soft: 0 8px 28px rgba(19, 20, 24, 0.06);
  --radius: 8px;
  --radius-large: 18px;
  --shell: 1200px;
}

* {
  box-sizing: border-box;
  min-width: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.5;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 200;
  transform: translateY(-150%);
  background: var(--ink);
  color: white;
  padding: 10px 14px;
  border-radius: var(--radius);
}

.skip-link:focus {
  transform: translateY(0);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.shell {
  width: min(calc(100% - 48px), var(--shell));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  min-height: 64px;
  border-bottom: 1px solid rgba(210, 210, 215, 0.72);
  background: rgba(250, 248, 254, 0.82);
  backdrop-filter: blur(18px);
}

.nav {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  font-weight: 700;
}

.brand-mark {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.brand-logo {
  width: min(240px, 56vw);
  height: auto;
  margin-left: -54px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 28px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
}

.nav-menu a:not(.button) {
  position: relative;
  padding-block: 8px;
}

.nav-menu a:not(.button)::after {
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 0;
  height: 1px;
  background: var(--ink);
  content: "";
  transition: width 180ms ease;
}

.nav-menu a:hover,
.nav-menu a:focus-visible,
.nav-menu a[aria-current="page"] {
  color: var(--ink);
}

.nav-menu a:hover::after,
.nav-menu a:focus-visible::after,
.nav-menu a[aria-current="page"]::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  color: var(--ink);
}

.nav-toggle-line {
  width: 16px;
  height: 1px;
  background: currentColor;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 13px 24px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

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

.button-small {
  min-height: 34px;
  padding: 8px 15px;
  font-size: 12px;
}

.button-dark {
  background: var(--ink);
  color: white;
}

.button-light,
.button-outline {
  background: rgba(255, 255, 255, 0.72);
  border-color: var(--line);
  color: var(--ink);
}

.button-membership {
  width: 100%;
  margin-block: 14px;
  background: rgba(97, 187, 70, 0.16);
  border-color: rgba(97, 187, 70, 0.72);
  color: #2f6f20;
}

.button-membership:hover,
.button-membership:focus-visible {
  background: rgba(97, 187, 70, 0.24);
  border-color: var(--green);
}

.button-outline {
  width: 100%;
}

.section {
  padding: 112px 0;
}

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

.section-muted {
  border-block: 1px solid var(--line-soft);
  background: var(--surface-muted);
}

.page-hero {
  position: relative;
  padding: 112px 0 72px;
  overflow: hidden;
  border-bottom: 1px solid var(--line-soft);
  background: var(--surface-soft);
}

.page-hero .shell {
  position: relative;
  z-index: 1;
  max-width: 860px;
  margin-inline: auto;
  text-align: center;
}

.page-hero-media {
  position: absolute;
  inset: 0;
}

.page-hero-media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(250, 248, 254, 0.96) 0%, rgba(250, 248, 254, 0.78) 45%, rgba(250, 248, 254, 0.38) 100%),
    linear-gradient(180deg, rgba(250, 248, 254, 0) 52%, var(--bg) 100%);
  content: "";
}

.page-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.78;
}

.page-hero h1 {
  max-width: none;
  margin-inline: auto;
  text-align: center;
}

.page-hero p:last-child {
  max-width: 660px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 19px;
}

.content-band {
  padding: 88px 0;
}

.placeholder-panel {
  padding: 40px;
  border: 1px solid var(--line);
  border-radius: var(--radius-large);
  background: var(--surface);
}

.visit-page-hero {
  min-height: 390px;
  display: flex;
  align-items: center;
  background: linear-gradient(180deg, var(--surface-soft), var(--bg));
}

.visit-page-hero .page-hero-media::after {
  background: linear-gradient(90deg, rgba(250, 248, 254, 0.9) 0%, rgba(250, 248, 254, 0.64) 48%, rgba(250, 248, 254, 0.28) 100%),
    linear-gradient(180deg, rgba(250, 248, 254, 0) 58%, var(--bg) 100%);
}

.visit-page-hero .page-hero-media img {
  opacity: 0.5;
}

.about-page-hero {
  min-height: 390px;
  display: flex;
  align-items: center;
  background: linear-gradient(180deg, var(--surface-soft), var(--bg));
}

.about-page-hero .page-hero-media::after {
  background: linear-gradient(90deg, rgba(250, 248, 254, 0.9) 0%, rgba(250, 248, 254, 0.64) 48%, rgba(250, 248, 254, 0.28) 100%),
    linear-gradient(180deg, rgba(250, 248, 254, 0) 58%, var(--bg) 100%);
}

.about-page-hero .page-hero-media img {
  opacity: 0.5;
}

.utility-page-hero {
  min-height: 390px;
  display: flex;
  align-items: center;
  background: linear-gradient(180deg, var(--surface-soft), var(--bg));
}

.utility-page-hero .page-hero-media::after {
  background: linear-gradient(90deg, rgba(250, 248, 254, 0.9) 0%, rgba(250, 248, 254, 0.64) 48%, rgba(250, 248, 254, 0.28) 100%),
    linear-gradient(180deg, rgba(250, 248, 254, 0) 58%, var(--bg) 100%);
}

.utility-page-hero .page-hero-media img {
  opacity: 0.5;
}

.about-page .page-hero {
  padding: 88px 0 56px;
}

.faq-page .page-hero,
.media-page .page-hero {
  padding: 88px 0 56px;
}

.visit-page .page-hero {
  padding: 88px 0 56px;
}

.about-intro-band {
  padding: 64px 0;
  background: var(--surface);
}

.utility-summary-band {
  padding: 64px 0;
  background: var(--surface);
}

.about-section {
  padding: 82px 0;
  background: var(--bg);
}

.utility-cta {
  padding: 72px 0;
  background: var(--bg);
}

.about-cta {
  padding: 72px 0;
  background: var(--surface);
}

.visit-summary-band {
  padding: 56px 0;
  background: var(--surface);
}

.visit-section {
  padding: 78px 0;
}

.membership-intro-section {
  padding: 64px 0;
  background: var(--surface);
}

.visit-cta {
  padding: 72px 0;
  background: var(--surface);
}

.visit-cta h2 {
  font-size: 34px;
}

.visit-cta p {
  max-width: 620px;
  margin-inline: auto;
}

.visit-overview,
.visit-info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

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

.membership-rental-grid,
.membership-terms-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  align-items: start;
}

.membership-support-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  gap: 34px;
  align-items: start;
  margin-top: 24px;
}

.about-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 56px;
  align-items: start;
}

.about-statement,
.about-facts article,
.timeline-list article {
  min-width: 0;
  padding: 34px;
  border: 1px solid var(--line);
  border-top-width: 3px;
  border-radius: var(--radius-large);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow-soft);
}

.about-statement p {
  color: var(--muted);
}

.about-portrait {
  aspect-ratio: 6 / 5;
  min-height: 0;
}

.about-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.about-milestone-section {
  padding-top: 72px;
  background: var(--bg);
}

.about-milestone-row {
  max-width: 100%;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
  overflow-x: hidden;
}

.about-milestone-card {
  min-height: 260px;
  display: flex;
  flex-direction: column;
  padding: 24px;
  border: 1px solid var(--line);
  border-top-width: 4px;
  border-radius: var(--radius-large);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow-soft);
}

.about-milestone-card span {
  display: block;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
}

.about-milestone-card h3 {
  margin-bottom: 12px;
  font-size: 19px;
}

.about-milestone-card p {
  margin: auto 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.45;
}

.about-matthew-section {
  padding-top: 72px;
  border-block: 1px solid var(--line-soft);
  background: var(--surface-muted);
}

.about-story-list {
  display: grid;
  gap: 34px;
  margin-top: 42px;
}

.about-story-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.74fr);
  gap: 34px;
  align-items: stretch;
}

.about-story-item-reverse {
  grid-template-columns: minmax(320px, 0.74fr) minmax(0, 1fr);
}

.about-story-item-reverse .about-story-copy {
  grid-column: 2;
}

.about-story-item-reverse .about-story-image {
  grid-column: 1;
  grid-row: 1;
}

.about-story-copy {
  min-width: 0;
  padding: 34px;
  border: 1px solid var(--line);
  border-top-width: 3px;
  border-radius: var(--radius-large);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow-soft);
}

.about-story-copy h3 {
  margin-bottom: 18px;
  font-size: 30px;
}

.about-story-copy p:not(.eyebrow) {
  color: var(--muted);
}

.about-story-copy p:last-child {
  margin-bottom: 0;
}

.about-story-image {
  position: relative;
  min-height: 330px;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-large);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.about-story-image img {
  width: 100%;
  height: 100%;
  min-height: 330px;
  object-fit: cover;
  object-position: center;
}

.about-story-photo-matthew {
  object-position: center 38%;
}

.about-story-photo-bedroom {
  object-position: center 42%;
}

.about-story-photo-establishing {
  object-position: center 58%;
}

.about-facts {
  display: grid;
  gap: 16px;
}

.about-facts span,
.timeline-list span {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.about-facts strong {
  display: block;
  margin-bottom: 6px;
  color: var(--ink);
  font-size: 19px;
  line-height: 1.25;
}

.about-facts p,
.timeline-list p {
  margin-bottom: 0;
  color: var(--muted);
}

.story-timeline {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 56px;
  align-items: start;
}

.timeline-list {
  display: grid;
  gap: 18px;
}

.timeline-list article {
  position: relative;
  overflow: hidden;
}

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

.faq-sidebar {
  position: sticky;
  top: 92px;
  display: grid;
  gap: 8px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-large);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow-soft);
}

.faq-sidebar a {
  padding: 9px 0;
  border-top: 1px solid var(--line-soft);
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
}

.faq-sidebar a:hover,
.faq-sidebar a:focus-visible {
  color: var(--ink);
}

.faq-groups {
  display: grid;
  gap: 28px;
}

.faq-group {
  padding: 34px;
  border: 1px solid var(--line);
  border-top-width: 3px;
  border-radius: var(--radius-large);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow-soft);
}

.faq-accent-green {
  border-top-color: var(--green);
}

.faq-accent-amber {
  border-top-color: var(--amber);
}

.faq-accent-orange {
  border-top-color: var(--orange);
}

.faq-accent-red {
  border-top-color: var(--red);
}

.faq-group details {
  padding: 20px 0;
  border-top: 1px solid var(--line-soft);
}

.faq-group details:last-child {
  padding-bottom: 0;
}

.faq-group summary {
  cursor: pointer;
  color: var(--ink);
  font-size: 18px;
  font-weight: 650;
}

.faq-group details p {
  max-width: 760px;
  margin: 12px 0 0;
  color: var(--muted);
}

.media-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  max-width: 940px;
  margin-inline: auto;
}

.media-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-large);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow-soft);
}

.media-card {
  border-top-width: 3px;
}

.media-accent-green {
  border-top-color: var(--green);
}

.media-accent-amber {
  border-top-color: var(--amber);
}

.media-accent-orange {
  border-top-color: var(--orange);
}

.media-accent-red {
  border-top-color: var(--red);
}

.media-accent-purple {
  border-top-color: var(--purple);
}

.media-accent-blue {
  border-top-color: var(--blue);
}

.media-card img {
  width: 100%;
  height: 190px;
  object-fit: contain;
}

.media-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding-top: 24px;
}

.media-card h2 {
  margin-bottom: 16px;
  font-size: 26px;
}

.media-card-body p:not(.eyebrow) {
  margin-bottom: 22px;
  color: var(--muted);
}

.media-card a {
  margin-top: auto;
}

.media-card a:not(.button) {
  align-self: flex-start;
  color: var(--ink);
  font-size: 14px;
  font-weight: 650;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.visit-feature-panel,
.info-block,
.visit-tips,
.membership-tier,
.membership-support-panel,
.rental-comparison-panel {
  padding: 34px;
  border: 1px solid var(--line);
  border-top-width: 3px;
  border-radius: var(--radius-large);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow-soft);
}

.panel-accent-green {
  border-top-color: var(--green);
}

.panel-accent-amber {
  border-top-color: var(--amber);
}

.panel-accent-orange {
  border-top-color: var(--orange);
}

.panel-accent-red {
  border-top-color: var(--red);
}

.panel-accent-purple {
  border-top-color: var(--purple);
}

.panel-accent-blue {
  border-top-color: var(--blue);
}

.visit-feature-panel-dark {
  background: rgba(79, 210, 53, 0.18);
  color: var(--ink);
}

.visit-feature-panel-dark .eyebrow,
.visit-feature-panel-dark p {
  color: var(--muted);
}

.visit-feature-panel h2,
.info-block h2,
.membership-tier h2 {
  font-size: 32px;
}

.membership-tier {
  display: flex;
  min-height: 100%;
  flex-direction: column;
}

.membership-tier > .eyebrow {
  display: inline-flex;
  align-self: flex-start;
  margin-bottom: 14px;
  padding: 6px 10px;
  border: 1px solid currentColor;
  border-radius: var(--radius);
  font-size: 13px;
}

.membership-tier.panel-accent-green > .eyebrow {
  color: var(--green);
}

.membership-tier.panel-accent-amber > .eyebrow {
  color: var(--amber);
}

.membership-tier.panel-accent-red > .eyebrow {
  color: var(--red);
}

.membership-tier h2 {
  margin-bottom: 14px;
}

.membership-tier h2 span {
  color: var(--muted);
  font-size: 17px;
  font-weight: 500;
}

.membership-tier p:not(.eyebrow) {
  color: var(--muted);
}

.membership-tier .detail-list {
  margin-top: 0;
  margin-bottom: 24px;
  padding-top: 18px;
}

.membership-tier-button-bottom {
  margin-top: auto;
  margin-bottom: 0;
}

.membership-support-panel h2 {
  max-width: 680px;
  font-size: 32px;
}

.membership-support-panel p:not(.eyebrow) {
  color: var(--muted);
}

.membership-terms-intro {
  max-width: none;
}

.membership-terms-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 40px;
}

.membership-terms-list li:nth-child(2) {
  padding-top: 0;
  border-top: 0;
}

.membership-terms-panel {
  margin-top: 24px;
}

.support-cost-list {
  display: grid;
  gap: 0;
  padding: 0;
  margin: 0;
  list-style: none;
}

.support-cost-list li {
  padding: 15px 0;
  border-top: 1px solid var(--line-soft);
}

.support-cost-list li:first-child {
  padding-top: 0;
  border-top: 0;
}

.support-cost-list strong,
.support-cost-list span {
  display: block;
}

.support-cost-list strong {
  color: var(--ink);
  font-size: 15px;
  font-weight: 650;
}

.support-cost-list span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 14px;
}

.opening-date {
  margin-bottom: 4px;
  color: var(--ink);
  font-size: 34px;
  font-weight: 650;
  line-height: 1.12;
}

.opening-time {
  margin-bottom: 18px;
  color: var(--ink);
  font-size: 22px;
  font-weight: 650;
  line-height: 1.2;
}

.future-opening {
  padding-top: 18px;
  margin: 18px 0;
  border-top: 1px solid var(--line);
}

.future-opening p:last-child {
  margin-bottom: 0;
  color: var(--ink);
  font-weight: 650;
}

.info-block .address-heading {
  margin-bottom: 14px;
  font-size: 24px;
  line-height: 1.24;
}

.info-block p,
.visit-tips li {
  color: var(--muted);
}

.info-stack {
  display: grid;
  gap: 24px;
  align-self: stretch;
}

.map-embed {
  aspect-ratio: 16 / 10;
  margin-top: 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-soft);
}

.map-embed iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.compact-detail-list {
  display: grid;
  gap: 20px;
}

.compact-detail-list p {
  margin: 0;
}

.compact-detail-list strong {
  display: block;
  margin-bottom: 3px;
  color: var(--ink);
  font-size: 12px;
  text-transform: uppercase;
}

.transport-method {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 18px;
  align-items: start;
  padding: 16px 0;
  border-top: 1px solid var(--line-soft);
}

.transport-method:first-child {
  padding-top: 0;
  border-top: 0;
}

.transport-icon {
  display: block;
  width: 52px;
  height: 52px;
  padding: 9px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-soft);
  object-fit: contain;
}

.detail-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.detail-list li {
  padding: 14px 0;
  border-top: 1px solid var(--line-soft);
}

.detail-list li:first-child {
  padding-top: 0;
  border-top: 0;
}

.detail-list strong,
.detail-list span {
  display: block;
}

.detail-list strong {
  color: var(--ink);
  font-size: 15px;
  font-weight: 650;
}

.detail-list span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 14px;
}

.detail-list .detail-note {
  color: var(--faint);
  font-size: 12px;
}

.rental-list {
  display: grid;
  gap: 0;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.rental-list li {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 0;
  border-top: 1px solid var(--line-soft);
}

.rental-list strong {
  color: var(--ink);
  font-size: 15px;
  font-weight: 650;
}

.rental-list span {
  flex: 0 0 auto;
  color: var(--muted);
  font-size: 14px;
}

.rental-list .rental-status-available {
  color: var(--green);
  font-weight: 650;
}

.rental-list .rental-status-soon {
  color: var(--orange);
  font-weight: 650;
}

.rental-comparison-panel .section-heading {
  max-width: 760px;
  margin-bottom: 28px;
}

.rental-table-wrap {
  overflow-x: auto;
}

.rental-comparison-table {
  width: min(100%, 820px);
  min-width: 560px;
  margin-inline: auto;
  border-collapse: collapse;
  font-size: 15px;
}

.rental-comparison-table th:first-child {
  width: 42%;
}

.rental-comparison-table th:not(:first-child),
.rental-comparison-table td {
  width: 29%;
}

.rental-comparison-table th,
.rental-comparison-table td {
  padding: 14px 16px;
  border-top: 1px solid var(--line-soft);
  text-align: center;
}

.rental-comparison-table thead th {
  border-top: 0;
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.table-tier-heading {
  display: inline-flex;
  padding: 6px 10px;
  border: 1px solid currentColor;
  border-radius: var(--radius);
  line-height: 1;
}

.table-tier-centris {
  color: var(--amber);
}

.table-tier-quadra {
  color: var(--red);
}

.rental-comparison-table th:first-child {
  text-align: left;
}

.rental-comparison-table tbody th {
  color: var(--ink);
  font-weight: 650;
}

.table-check {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: rgba(97, 187, 70, 0.14);
  color: var(--green);
  font-weight: 800;
  line-height: 1;
}

.table-soon {
  color: var(--orange);
  font-size: 13px;
  font-weight: 650;
}

.panel-image {
  margin: 24px 0 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-soft);
}

.panel-image img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.panel-image-cover {
  aspect-ratio: 16 / 10;
}

.panel-image-cover img {
  height: 100%;
  object-fit: cover;
}

.visit-image-placeholder {
  height: 220px;
  margin: 0;
  overflow: hidden;
  padding: 0;
}

.visit-image-placeholder img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: center;
}

.visit-tips ul {
  display: grid;
  gap: 14px;
  padding-left: 20px;
  margin: 0;
}

.visit-tips strong {
  color: var(--ink);
}

.hero {
  position: relative;
  min-height: min(820px, calc(100vh - 64px));
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(250, 248, 254, 0.96) 0%, rgba(250, 248, 254, 0.78) 42%, rgba(250, 248, 254, 0.32) 100%),
    linear-gradient(180deg, rgba(250, 248, 254, 0) 56%, var(--bg) 100%);
  content: "";
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.72;
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 96px 0 128px;
}

.accent-bar,
.mini-accent {
  width: 112px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--green) 0 16.66%, var(--amber) 16.66% 33.33%, var(--orange) 33.33% 50%, var(--red) 50% 66.66%, var(--purple) 66.66% 83.33%, var(--blue) 83.33% 100%);
}

.accent-bar {
  margin-bottom: 28px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.3;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 770px;
  margin-bottom: 28px;
  font-size: 56px;
  font-weight: 650;
  line-height: 1.06;
}

h2 {
  margin-bottom: 22px;
  font-size: 40px;
  font-weight: 650;
  line-height: 1.14;
}

h3 {
  margin-bottom: 10px;
  font-size: 22px;
  font-weight: 650;
  line-height: 1.25;
}

.lede {
  max-width: 620px;
  margin-bottom: 38px;
  color: var(--muted);
  font-size: 19px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.88fr);
  gap: 72px;
  align-items: center;
}

.split-reverse {
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1fr);
}

.gallery-composition {
  position: relative;
}

.exhibit-placeholder-grid {
  display: grid;
  gap: 18px;
  max-width: 620px;
}

.image-frame {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-large);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.image-frame-large {
  width: min(100%, 620px);
  aspect-ratio: 4 / 3;
}

.exhibit-image-placeholder {
  height: 220px;
}

.image-frame img,
.visit-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section-copy p,
.section-heading p,
.support-card p,
.cta p,
.site-footer p {
  color: var(--muted);
}

.section-copy {
  max-width: 560px;
}

.feature-list {
  display: grid;
  gap: 12px;
  width: 100%;
  margin-top: 32px;
}

.feature-list article {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 18px;
  width: 100%;
  border: 1px solid transparent;
  border-radius: var(--radius-large);
}

.feature-icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: var(--radius);
  background: var(--surface-soft);
  color: var(--muted);
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
}

.section-heading {
  max-width: 680px;
  margin-bottom: 48px;
}

.section-heading.membership-terms-intro {
  max-width: none;
  width: 100%;
}

.section-heading.membership-terms-intro p:last-child {
  max-width: none;
}

.centered {
  text-align: center;
  margin-inline: auto;
}

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

.support-card {
  position: relative;
  display: flex;
  min-height: 420px;
  flex-direction: column;
  padding: 34px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-top-width: 3px;
  border-radius: var(--radius-large);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.9) inset;
}

.support-card.accent-green {
  border-top: 3px solid var(--green);
}

.support-card.accent-amber {
  border-top: 3px solid var(--amber);
}

.support-card.accent-red {
  border-top: 3px solid var(--red);
}

.support-card h3 {
  font-size: 42px;
  font-weight: 500;
}

.support-card ul {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 16px 0 30px;
  list-style: none;
  color: var(--muted);
  font-size: 14px;
}

.support-card li::before {
  margin-right: 9px;
  color: var(--faint);
  content: "/";
}

.support-card .button {
  margin-top: auto;
}

.story-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

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

.mailing-list-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  gap: 28px;
  align-items: center;
  margin-bottom: 24px;
  padding: 34px;
  border: 1px solid var(--line);
  border-top: 3px solid var(--green);
  border-radius: var(--radius-large);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow-soft);
}

.membership-promo-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  gap: 28px;
  align-items: center;
  margin-bottom: 24px;
  padding: 34px;
  border: 1px solid var(--line);
  border-top: 3px solid var(--amber);
  border-radius: var(--radius-large);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow-soft);
}

.membership-promo-card h3 {
  margin-bottom: 10px;
  font-size: 34px;
  line-height: 1.08;
}

.membership-promo-card p:last-child {
  max-width: 650px;
  margin-bottom: 0;
  color: var(--muted);
}

.membership-promo-actions {
  display: grid;
  gap: 20px;
}

.membership-promo-actions ul {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
  color: var(--muted);
  font-size: 14px;
}

.membership-promo-actions li::before {
  margin-right: 9px;
  color: var(--amber);
  content: "/";
}

.mailing-list-card h3 {
  margin-bottom: 10px;
  font-size: 34px;
  line-height: 1.08;
}

.mailing-list-card p:last-child {
  max-width: 650px;
  margin-bottom: 0;
  color: var(--muted);
}

.mailing-list-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
}

.mailing-list-form input {
  min-width: 0;
  min-height: 48px;
  padding: 12px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface-soft);
  color: var(--muted);
}

.mailing-list-form input:disabled,
.mailing-list-form button:disabled {
  cursor: not-allowed;
  opacity: 0.68;
}

.newsletter-message {
  grid-column: 1 / -1;
  min-height: 1.4em;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.social-card {
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  gap: 16px;
  min-height: 230px;
  padding: 30px 24px;
  border: 1px solid var(--line);
  border-top-width: 3px;
  border-radius: var(--radius-large);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow-soft);
  text-align: center;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.social-card:hover,
.social-card:focus-visible {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.social-accent-red {
  border-top-color: var(--red);
}

.social-accent-blue {
  border-top-color: var(--blue);
}

.social-accent-purple {
  border-top-color: var(--purple);
}

.social-icon {
  display: block;
  width: 46px;
  height: 46px;
  object-fit: contain;
}

.social-card strong,
.social-card span span {
  display: block;
}

.social-card strong {
  margin-bottom: 6px;
  color: var(--ink);
  font-size: 20px;
  line-height: 1.2;
}

.social-card span span {
  color: var(--muted);
  font-size: 15px;
}

.artifact-card {
  min-height: 170px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  border: 1px solid #c9c6ff;
  border-top-width: 3px;
  border-radius: var(--radius);
  background: #efedff;
  box-shadow: var(--shadow-soft);
}

.artifact-card-tall {
  grid-row: span 2;
  min-height: 354px;
}

.artifact-card-image {
  overflow: hidden;
  padding: 0;
}

.artifact-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.artifact-card-thumb {
  width: 200px;
  height: 200px;
  border: 1px solid rgba(150, 61, 151, 0.24);
  border-radius: var(--radius);
  object-fit: cover;
  object-position: center;
}

.artifact-card-dark {
  background: var(--ink);
  border-color: var(--ink);
  color: white;
}

.artifact-card.panel-accent-green {
  border-top-color: var(--green);
}

.artifact-card.panel-accent-blue {
  border-top-color: var(--blue);
}

.artifact-card.panel-accent-purple {
  border-top-color: var(--purple);
}

.artifact-card span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.artifact-card-dark span {
  color: rgba(255, 255, 255, 0.68);
}

.section-visit {
  background: var(--surface);
}

.visit-card {
  display: grid;
  grid-template-columns: 1.38fr 0.82fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-large);
  background: var(--surface-soft);
  box-shadow: var(--shadow);
}

.visit-image {
  min-height: 520px;
  margin: 0;
}

.visit-details {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 48px;
}

dl {
  display: grid;
  gap: 24px;
  margin: 0 0 32px;
}

dt {
  margin-bottom: 4px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

dd {
  margin: 0;
  color: var(--muted);
}

.cta {
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--line-soft);
}

.cta::before {
  position: absolute;
  inset: 20% 20%;
  z-index: -1;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(97, 187, 70, 0.08), rgba(253, 184, 19, 0.08), rgba(224, 58, 62, 0.07), rgba(0, 157, 220, 0.08));
  filter: blur(70px);
  content: "";
}

.cta .shell {
  max-width: 720px;
}

.centered-actions {
  justify-content: center;
}

.site-footer {
  padding: 64px 0 30px;
  border-top: 1px solid var(--line);
  background: var(--surface-soft);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 48px;
}

.footer-grid h2 {
  margin-bottom: 18px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.footer-grid a:not(.brand) {
  display: block;
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 14px;
}

.footer-grid a:hover,
.footer-grid a:focus-visible {
  color: var(--ink);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-top: 30px;
  margin-top: 48px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
}

.footer-bottom div {
  display: flex;
  gap: 20px;
}

@media (max-width: 900px) {
  .shell {
    width: calc(100vw - 40px);
    max-width: calc(100vw - 40px);
  }

  .page-hero .shell,
  .section-copy,
  .section-heading {
    max-width: 100%;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-menu {
    position: absolute;
    top: 64px;
    left: 20px;
    right: 20px;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 4px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: var(--radius-large);
    background: rgba(255, 255, 255, 0.94);
    box-shadow: var(--shadow);
  }

  .nav-menu.is-open {
    display: flex;
  }

  .nav-menu a {
    padding: 12px;
  }

  .nav-menu .button {
    margin-top: 6px;
  }

  .section {
    padding: 78px 0;
  }

  .page-hero {
    padding: 78px 0 56px;
  }

  .about-page .page-hero,
  .faq-page .page-hero,
  .media-page .page-hero,
  .visit-page .page-hero {
    padding: 64px 0 44px;
  }

  .about-intro-band,
  .utility-summary-band,
  .about-section,
  .about-cta,
  .utility-cta,
  .visit-summary-band,
  .visit-section,
  .membership-intro-section,
  .visit-cta {
    padding: 58px 0;
  }

  .hero {
    min-height: auto;
  }

  .hero-content {
    padding: 78px 0 96px;
  }

  h1 {
    font-size: 42px;
  }

  h2 {
    font-size: 32px;
  }

  .split,
  .split-reverse,
  .visit-card,
  .footer-grid,
  .about-intro-grid,
  .faq-layout,
  .media-list,
  .story-timeline,
  .membership-tier-grid,
  .membership-rental-grid,
  .membership-terms-grid,
  .membership-support-panel,
  .visit-overview,
  .visit-info-grid,
  .about-story-item,
  .about-story-item-reverse {
    grid-template-columns: 1fr;
  }

  .about-story-item-reverse .about-story-copy,
  .about-story-item-reverse .about-story-image {
    grid-column: auto;
    grid-row: auto;
  }

  .about-intro-grid,
  .about-statement,
  .about-portrait,
  .about-story-item,
  .about-story-copy,
  .about-story-image {
    width: 100%;
    max-width: 100%;
  }

  .about-statement h2,
  .about-story-copy h3,
  .section-heading h2 {
    overflow-wrap: break-word;
  }

  .about-milestone-row {
    width: 100%;
    grid-template-columns: repeat(6, minmax(180px, 1fr));
    overflow-x: auto;
    padding-bottom: 12px;
    scroll-snap-type: x proximity;
  }

  .about-milestone-card {
    min-height: 240px;
    scroll-snap-align: start;
  }

  .about-statement,
  .about-milestone-card,
  .about-story-copy {
    padding: 28px;
  }

  .about-story-copy h3 {
    font-size: 26px;
  }

  .about-story-image {
    min-height: 260px;
  }

  .about-story-image img {
    min-height: 260px;
  }

  .faq-sidebar {
    position: static;
  }

  .gallery-composition {
    min-height: 0;
  }

  .exhibit-placeholder-grid {
    grid-template-columns: 1fr;
  }

  .exhibit-image-placeholder {
    height: 240px;
  }

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

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

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

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

  .support-card {
    min-height: 0;
  }

  .visit-image {
    min-height: 360px;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  html,
  body {
    width: 100%;
  }

  .shell {
    width: calc(100vw - 32px);
    max-width: calc(100vw - 32px);
  }

  main,
  .site-header,
  .site-footer,
  .shell,
  .split,
  .split-reverse,
  .visit-overview,
  .visit-info-grid,
  .membership-tier-grid {
    max-width: 100%;
    overflow-x: hidden;
  }

  .site-header,
  .site-header .nav {
    overflow: visible;
  }

  .page-hero,
  .content-band,
  .section,
  .visit-feature-panel,
  .info-block,
  .visit-tips,
  .membership-tier,
  .membership-support-panel,
  .rental-comparison-panel,
  .section-copy,
  .feature-list,
  .feature-list article {
    min-width: 0;
  }

  h1,
  h2,
  h3,
  p,
  li,
  strong,
  .button {
    overflow-wrap: anywhere;
  }

  .brand {
    font-size: 15px;
  }

  .button {
    width: 100%;
  }

  .hero-actions {
    width: 100%;
  }

  h1 {
    font-size: 34px;
  }

  .page-hero h1 {
    font-size: 29px;
  }

  h2 {
    font-size: 28px;
  }

  .lede {
    font-size: 17px;
  }

  .feature-list article {
    grid-template-columns: 44px 1fr;
    gap: 14px;
  }

  .page-hero .shell {
    max-width: 100%;
  }

  .page-hero p:last-child {
    font-size: 17px;
  }

  .visit-feature-panel,
  .info-block,
  .visit-tips,
  .membership-tier,
  .membership-support-panel,
  .rental-comparison-panel {
    padding: 28px;
  }

  .mailing-list-card {
    padding: 28px;
  }

  .mailing-list-card h3 {
    font-size: 28px;
  }

  .mailing-list-form {
    grid-template-columns: 1fr;
  }

  .membership-terms-list {
    grid-template-columns: 1fr;
  }

  .membership-terms-list li:nth-child(2) {
    padding-top: 14px;
    border-top: 1px solid var(--line-soft);
  }

  .rental-list li {
    display: grid;
    gap: 3px;
  }

  .story-panel {
    grid-template-columns: 1fr;
  }

  .artifact-card-tall {
    min-height: 230px;
  }

  .visit-details {
    padding: 32px 24px;
  }

  .media-card img {
    height: 180px;
  }
}
