:root {
  --paper: #ecebe4;
  --paper-deep: #d8d6cc;
  --ink: #2f2e2a;
  --ink-soft: #5a5952;
  --line: #bebcb3;
  --panel: #f6f5ef;
  --accent: #8f8976;
  --shadow: 0 10px 26px rgba(47, 46, 42, 0.08);
  --radius: 14px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Public Sans", sans-serif;
  background:
    linear-gradient(180deg, rgba(236, 235, 228, 0.9), rgba(231, 229, 221, 0.96)),
    repeating-linear-gradient(90deg, rgba(190, 188, 179, 0.15) 0 1px, transparent 1px 32px),
    repeating-linear-gradient(0deg, rgba(190, 188, 179, 0.12) 0 1px, transparent 1px 32px);
  background-color: var(--paper);
  line-height: 1.6;
}

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

a {
  color: inherit;
}

.container {
  width: min(1150px, 92vw);
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(5px);
  background: rgba(236, 235, 228, 0.9);
}

.header-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-logo {
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.brand-name {
  margin: 0;
  font-size: 0.94rem;
  font-weight: 600;
  letter-spacing: 0.015em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-left: auto;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  line-height: 1;
  min-height: 30px;
  text-decoration: none;
  font-size: 0.9rem;
  color: var(--ink-soft);
}

.site-nav a.nav-featured {
  background: #5b594f;
  color: #f4f2e9;
  border-radius: 999px;
  padding: 0 11px;
  border: 1px solid #5b594f;
}

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

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

.menu-toggle {
  display: none;
  margin-left: auto;
  border: 1px solid var(--line);
  background: var(--panel);
  padding: 8px 10px;
  border-radius: 8px;
  font: inherit;
}

.hero {
  padding: 56px 0 36px;
}

.top-news-banner {
  padding: 14px 0;
  background: linear-gradient(90deg, rgba(143, 137, 118, 0.2), rgba(143, 137, 118, 0.07));
  border-bottom: 1px solid rgba(143, 137, 118, 0.35);
}

.banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.banner-inner p {
  margin: 0;
}

.banner-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 32px;
  align-items: center;
}

.hero h1 {
  font-family: "Newsreader", serif;
  font-size: clamp(2rem, 3vw, 3.25rem);
  line-height: 1.1;
  margin: 0.25rem 0 1rem;
  max-width: 19ch;
}

.lead {
  color: var(--ink-soft);
  max-width: 58ch;
  margin-bottom: 1.5rem;
}

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

.hero-media-wrap {
  border-radius: calc(var(--radius) + 6px);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid #d3d2c8;
  background: #ecebe4;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #f6f6f0;
  background: #4e4d47;
  border: 1px solid #4e4d47;
  border-radius: 999px;
  padding: 10px 16px;
  font-size: 0.92rem;
  font-weight: 600;
}

.btn-muted {
  color: var(--ink);
  background: transparent;
  border: 1px solid var(--line);
}

.section {
  padding: 56px 0;
}

.tint {
  background: linear-gradient(180deg, rgba(246, 245, 239, 0.72), rgba(246, 245, 239, 0.42));
  border-top: 1px solid rgba(190, 188, 179, 0.45);
  border-bottom: 1px solid rgba(190, 188, 179, 0.45);
}

.section-head h2,
h2,
h3 {
  margin-top: 0;
}

.section-head h2,
.panel h2 {
  font-family: "Newsreader", serif;
  font-size: clamp(1.7rem, 2.5vw, 2.4rem);
  margin-bottom: 0.3rem;
}

.eyebrow {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 700;
  font-size: 0.72rem;
  color: #716b58;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.visit-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 20px;
}

.panel,
.card,
.timeline-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.panel {
  padding: 22px;
}

.panel p,
.card p,
.timeline-item p {
  color: var(--ink-soft);
}

.newsletter-grid {
  align-items: stretch;
}

.newsletter-panel {
  height: 100%;
  overflow: auto;
}

.newsletter-content h4,
.newsletter-content h5 {
  font-family: "Newsreader", serif;
  margin: 1.2rem 0 0.45rem;
  font-size: 1.35rem;
  color: var(--ink);
}

.newsletter-content h5 {
  font-size: 1.12rem;
}

.newsletter-content p {
  margin: 0 0 0.85rem;
}

.panel-stack {
  display: grid;
  align-content: start;
  gap: 20px;
  height: 100%;
}

.facts dl {
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.facts dt {
  color: #6a665a;
  font-size: 0.84rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.facts dd {
  margin: 0;
  font-weight: 700;
  font-size: 1.1rem;
}

.card-grid {
  display: grid;
  gap: 16px;
}

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

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

.card {
  overflow: hidden;
}

.card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  background: #ecebe4;
  border-bottom: 1px solid var(--line);
}

.card.compact img {
  height: 140px;
}

.card-body {
  padding: 16px;
}

.card-body h3 {
  margin: 0 0 6px;
  font-family: "Newsreader", serif;
  font-size: 1.35rem;
}

.meta {
  color: #6f6a5d;
  font-size: 0.88rem;
}

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

.timeline-item {
  padding: 16px;
}

.list {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 8px;
}

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

.visit-photo {
  padding: 0;
  overflow: hidden;
}

.visit-photo img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
}

.floor-plan-wrap {
  margin-top: 20px;
}

.floor-plan-panel {
  padding: 18px;
}

.floor-plan-panel h3 {
  margin-bottom: 0.4rem;
  font-family: "Newsreader", serif;
  font-size: clamp(1.3rem, 2vw, 1.8rem);
}

.floor-plan-image {
  width: 100%;
  margin-top: 10px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #ecebe4;
}

.newsletter {
  display: grid;
  gap: 10px;
}

.newsletter input {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px 12px;
  background: #faf9f3;
  font: inherit;
}

.site-footer {
  padding: 20px 0 28px;
  border-top: 1px solid var(--line);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  color: #605c4f;
  font-size: 0.88rem;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

  .hero-grid,
  .visit-grid,
  .two-col,
  .card-grid.three,
  .timeline {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 780px) {
  .banner-inner {
    flex-direction: column;
    align-items: flex-start;
  }

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

  .site-nav {
    position: absolute;
    top: 82px;
    left: 0;
    right: 0;
    background: rgba(236, 235, 228, 0.98);
    border-bottom: 1px solid var(--line);
    display: none;
    flex-direction: column;
    padding: 12px 4vw 16px;
  }

  .site-nav.open {
    display: flex;
  }
}

.activity-sheet-panel {
  padding: 18px;
}

.activity-sheet-media-wrap {
  margin-top: 10px;
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
  background: #ecebe4;
}

.activity-sheet-image {
  width: 100%;
  height: auto;
  display: block;
}
