:root {
  --bg: #faf5ef;
  --surface: #ffffff;
  --surface-alt: #f0e6da;
  --text: #241c14;
  --text-muted: #645648;
  --border: rgba(36, 28, 20, 0.12);
  --accent: #a8533a;
  --accent-2: #4f6b52;
  --secondary: #3a2c20;
  --on-accent: #ffffff;
  --dark: #2a2017;
  --radius: 20px;
  --radius-btn: 6px;
  --font-heading: Baskerville, 'Baskerville Old Face', Georgia, serif;
  --font-body: 'Segoe UI', Arial, sans-serif;
  --max: 1080px;
  --section-pad: 76px;
  --header-h: 0px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.62;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

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

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

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

h1,
h2,
h3,
h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: -0.6px;
  line-height: 1.2;
  color: var(--text);
  margin: 0 0 0.6em;
}

h1 {
  font-size: clamp(36px, 5.5vw, 58px);
  line-height: 1.15;
}

h2 {
  font-size: clamp(24px, 3.6vw, 36px);
}

h3 {
  font-size: 1.25rem;
}

p {
  margin: 0 0 1em;
}

p:last-child {
  margin-bottom: 0;
}

ul,
ol {
  margin: 0 0 1em;
  padding-left: 1.25em;
}

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

@media (max-width: 480px) {
  .wrap {
    width: min(100% - 28px, var(--max));
  }
}

.kicker {
  display: block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  width: min(100% - 48px, var(--max));
  margin-inline: auto;
  padding: 12px 0 0;
}

.brand-row {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-bottom: 10px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  text-decoration: none;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: -0.4px;
}

.brand:hover {
  color: var(--accent);
}

.brand img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.nav-row {
  display: flex;
  justify-content: center;
  border-top: 1px solid var(--border);
  padding: 8px 0 10px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px 22px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-variant: small-caps;
  text-decoration: none;
  color: var(--text-muted);
  padding: 4px 0;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--accent);
}

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border);
  border-radius: var(--radius-btn);
  width: 42px;
  height: 36px;
  padding: 0;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  color: var(--text);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: currentColor;
}

.independence {
  border-bottom: 1px solid var(--border);
  background: var(--bg);
}

.independence p {
  width: min(100% - 48px, var(--max));
  margin: 0 auto;
  padding: 8px 0;
  font-size: 0.78rem;
  line-height: 1.45;
  color: var(--text-muted);
}

@media (max-width: 480px) {
  .independence p {
    width: min(100% - 28px, var(--max));
  }
}

@media (max-width: 900px) {
  .header-inner {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    padding: 10px 0;
    gap: 8px;
  }

  .brand-row {
    justify-content: flex-start;
    padding-bottom: 0;
  }

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

  .nav-row {
    display: none;
    grid-column: 1 / -1;
    border-top: 1px solid var(--border);
    padding: 8px 0 4px;
    justify-content: stretch;
  }

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

  .nav-links {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .nav-links a {
    display: block;
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
    font-variant: normal;
    text-transform: uppercase;
  }
}

.hero {
  position: relative;
  padding: var(--section-pad) 0 calc(var(--section-pad) + 48px);
  overflow: visible;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 28px 48px;
  align-items: start;
}

.hero h1 {
  grid-column: 1 / -1;
  max-width: 16ch;
  margin-bottom: 0;
}

.hero-lead {
  grid-column: 1;
  max-width: 38ch;
  margin-left: auto;
  margin-right: 0;
  color: var(--text-muted);
  font-size: 1.05rem;
}

.hero-photo {
  grid-column: 2;
  grid-row: 2;
  justify-self: end;
  width: min(100%, 320px);
  aspect-ratio: 1;
  object-fit: cover;
  border: 1px solid var(--border);
  margin-bottom: -96px;
  position: relative;
  z-index: 2;
}

@media (max-width: 768px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    max-width: none;
  }

  .hero-lead {
    margin-left: 0;
    max-width: none;
  }

  .hero-photo {
    grid-column: 1;
    justify-self: start;
    width: min(100%, 280px);
    margin-bottom: -64px;
  }
}

.section {
  padding: var(--section-pad) 0;
}

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

.section-dark {
  background: var(--dark);
  color: #f3ebe2;
}

.section-dark h2,
.section-dark a {
  color: #f3ebe2;
}

.section-dark a:hover {
  color: #ffffff;
}

.section-dark .muted,
.section-dark p {
  color: rgba(243, 235, 226, 0.84);
}

.center {
  text-align: center;
}

.center .lead {
  max-width: 52ch;
  margin-inline: auto;
  color: var(--text-muted);
}

.category-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 40px;
}

.category-card {
  background: var(--surface);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
}

.category-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.category-card-body {
  padding: 22px 22px 26px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 10px;
}

.category-card h3 {
  margin: 0;
  font-size: 1.45rem;
}

.category-card p {
  color: var(--text-muted);
  flex: 1;
}

.category-card .text-link {
  align-self: flex-start;
  font-weight: 600;
  text-decoration: none;
  color: var(--accent);
}

.category-card .text-link:hover {
  color: var(--secondary);
}

@media (max-width: 900px) {
  .category-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 560px) {
  .category-grid {
    grid-template-columns: 1fr;
  }
}

.approach-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 40px;
  border-top: 1px solid var(--border);
  padding-top: 36px;
}

.approach-block h3 {
  font-size: 1.05rem;
  margin-bottom: 0.55em;
}

.approach-block p {
  color: var(--text-muted);
  font-size: 0.96rem;
}

@media (max-width: 768px) {
  .approach-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }
}

.amenities-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 48px;
  margin-top: 36px;
}

.amenity-item {
  border-top: 1px solid var(--border);
  padding: 16px 0;
}

.amenity-item strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  letter-spacing: -0.3px;
  margin-bottom: 0.35em;
}

.amenity-item span {
  color: var(--text-muted);
  font-size: 0.96rem;
}

@media (max-width: 768px) {
  .amenities-grid {
    grid-template-columns: 1fr;
  }
}

.closing-band {
  max-width: 640px;
  margin-inline: auto;
  text-align: center;
}

.closing-band .text-link {
  display: inline-block;
  margin-top: 18px;
  font-weight: 600;
  color: #f3ebe2;
}

.page-hero {
  padding: calc(var(--section-pad) - 16px) 0 28px;
}

.page-hero .intro {
  max-width: 62ch;
  color: var(--text-muted);
  font-size: 1.05rem;
}

.catalog-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  padding-bottom: var(--section-pad);
  align-items: start;
}

.venue-card {
  background: var(--surface);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
}

.venue-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.venue-card-body {
  padding: 18px 18px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.venue-card h2 {
  font-size: 1.2rem;
  margin: 0;
  line-height: 1.3;
}

.venue-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.25em;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.4px;
  margin: 0;
  line-height: 1.3;
}

.venue-meta .sep {
  display: none;
}

.venue-meta .place {
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0;
}

.venue-card p {
  color: var(--text);
  font-size: 0.95rem;
  margin: 0;
}

.venue-card.image-bottom .venue-card-body {
  order: 1;
  padding-top: 18px;
  padding-bottom: 12px;
}

.venue-card.image-bottom img {
  order: 2;
}

.venue-card.image-bottom .card-foot {
  order: 3;
}

.venue-card .card-foot {
  margin-top: auto;
  padding: 16px 18px 18px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--accent);
  border-radius: var(--radius-btn);
  background: var(--accent);
  color: var(--on-accent);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: box-shadow 180ms ease, background 180ms ease;
}

.btn:hover {
  background: var(--secondary);
  border-color: var(--secondary);
  color: var(--on-accent);
  box-shadow: 0 6px 18px rgba(36, 28, 20, 0.14);
}

.venue-card--route .venue-card-body h2,
.venue-card--route .venue-meta {
  padding-bottom: 10px;
  border-bottom: 2px solid var(--accent);
}

.venue-card--route p {
  color: var(--text-muted);
}

.venue-card--route .link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  text-decoration: none;
  color: var(--accent);
  padding: 4px 0;
}

.venue-card--route .link-arrow:hover {
  color: var(--secondary);
  box-shadow: none;
}

.venue-card--route .card-foot {
  border-top: none;
}

.catalog-close {
  padding: 0 0 var(--section-pad);
  color: var(--text-muted);
  max-width: 62ch;
}

@media (max-width: 768px) {
  .catalog-grid {
    grid-template-columns: 1fr;
  }
}

.editorial-stack {
  padding-bottom: var(--section-pad);
}

.editorial-block {
  padding: 48px 0;
  border-top: 1px solid var(--border);
}

.editorial-block:first-of-type {
  border-top: none;
  padding-top: 12px;
}

.editorial-block .num {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.7rem;
}

.editorial-block p {
  color: var(--text-muted);
  max-width: 68ch;
}

.guest-lead {
  font-size: clamp(1.2rem, 2.4vw, 1.55rem);
  line-height: 1.45;
  max-width: 48ch;
  margin-bottom: 48px;
  font-family: var(--font-heading);
  letter-spacing: -0.4px;
}

.guest-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px 48px;
  padding-bottom: var(--section-pad);
}

.guest-grid section h2 {
  font-size: clamp(22px, 2.8vw, 28px);
}

.guest-grid section p {
  color: var(--text-muted);
}

@media (max-width: 900px) {
  .guest-grid {
    grid-template-columns: 1fr;
  }
}

.contact-band {
  background: var(--surface-alt);
  padding: var(--section-pad) 0 48px;
}

.contact-band .intro {
  max-width: 58ch;
  color: var(--text-muted);
}

.contact-band .email-line {
  margin-top: 18px;
}

.contact-form-wrap {
  padding: 48px 0 var(--section-pad);
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 24px;
  max-width: 760px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-field.full {
  grid-column: 1 / -1;
}

.form-field label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--secondary);
}

.form-field input,
.form-field select,
.form-field textarea {
  font: inherit;
  color: var(--text);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-btn);
  padding: 11px 12px;
  width: 100%;
}

.form-field textarea {
  min-height: 140px;
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: 2px solid var(--accent);
  outline-offset: 1px;
}

.agree-row {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px 12px;
  align-items: start;
}

.agree-row input {
  margin-top: 4px;
  width: 18px;
  height: 18px;
}

.agree-row label {
  font-size: 0.92rem;
  color: var(--text);
}

.field-error {
  grid-column: 2;
  color: var(--accent);
  font-size: 0.85rem;
  margin: 0;
}

.form-actions {
  grid-column: 1 / -1;
}

.form-actions .btn {
  width: auto;
  min-width: 180px;
}

.form-status {
  grid-column: 1 / -1;
  color: var(--accent);
  font-size: 0.92rem;
  margin: 0;
}

.confirm-panel {
  max-width: 640px;
  border: 1px solid var(--border);
  background: var(--surface);
  padding: 28px;
}

.confirm-panel h2 {
  font-size: 1.5rem;
}

.confirm-panel p {
  color: var(--text-muted);
}

@media (max-width: 768px) {
  .contact-form {
    grid-template-columns: 1fr;
  }
}

.legal-body {
  padding: 28px 0 var(--section-pad);
}

.legal-body h2 {
  font-size: clamp(20px, 2.6vw, 26px);
  margin-top: 1.8em;
}

.legal-body h3 {
  font-size: 1.05rem;
  margin-top: 1.2em;
}

.legal-body p,
.legal-body li {
  color: var(--text-muted);
}

.sitemap-list {
  list-style: none;
  margin: 0 0 var(--section-pad);
  padding: 0;
  border-top: 1px solid var(--border);
}

.sitemap-list li {
  display: grid;
  grid-template-columns: minmax(160px, 280px) 1fr;
  gap: 16px 28px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  align-items: baseline;
}

.sitemap-list a {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  text-decoration: none;
  color: var(--text);
}

.sitemap-list a:hover {
  color: var(--accent);
}

.sitemap-list span {
  color: var(--text-muted);
  font-size: 0.95rem;
}

@media (max-width: 768px) {
  .sitemap-list li {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}

.site-footer {
  background: var(--dark);
  color: rgba(243, 235, 226, 0.88);
  padding: 56px 0 28px;
  text-align: center;
}

.site-footer a {
  color: rgba(243, 235, 226, 0.92);
  text-decoration: none;
}

.site-footer a:hover {
  color: #ffffff;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.15rem;
  color: #f3ebe2;
  margin-bottom: 16px;
}

.footer-brand img {
  width: 32px;
  height: 32px;
}

.footer-blurb {
  max-width: 52ch;
  margin: 0 auto 28px;
  font-size: 0.95rem;
  line-height: 1.55;
  color: rgba(243, 235, 226, 0.78);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px 0;
  max-width: 820px;
  margin: 0 auto 28px;
  font-size: 0.88rem;
}

.footer-links a {
  padding: 2px 0;
}

.footer-links .dot {
  margin: 0 10px;
  color: rgba(243, 235, 226, 0.35);
  pointer-events: none;
}

.footer-notice {
  max-width: 720px;
  margin: 0 auto 28px;
  font-size: 0.78rem;
  line-height: 1.5;
  color: rgba(243, 235, 226, 0.62);
}

.footer-bottom {
  border-top: 1px solid rgba(243, 235, 226, 0.14);
  padding-top: 18px;
  text-align: left;
  width: min(100% - 48px, var(--max));
  margin-inline: auto;
}

.footer-bottom p {
  margin: 0;
  font-size: 0.82rem;
  color: rgba(243, 235, 226, 0.7);
}

.footer-bottom .consent-line {
  margin-top: 6px;
  font-size: 0.78rem;
  color: rgba(243, 235, 226, 0.55);
}

.footer-bottom button {
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  color: inherit;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.footer-bottom button:hover {
  color: #ffffff;
}

.reveal {
  opacity: 0;
  transition: opacity 240ms ease;
}

.reveal.is-visible {
  opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal {
    opacity: 1;
    transition: none;
  }
}

.consent {
  position: fixed;
  z-index: 1000;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 12px;
  pointer-events: none;
}

.consent[hidden] {
  display: none !important;
}

.consent-panel {
  pointer-events: auto;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  background: rgba(250, 245, 239, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: var(--radius) var(--radius) 0 0;
  padding: 20px 18px 16px;
  color: var(--text);
  box-shadow: 0 -8px 28px rgba(36, 28, 20, 0.12);
  transform: translateY(0);
  animation: consentUp 240ms ease;
}

@keyframes consentUp {
  from {
    transform: translateY(18px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@media (min-width: 900px) {
  .consent {
    left: auto;
    right: 20px;
    bottom: 20px;
    width: min(420px, calc(100vw - 40px));
    padding: 0;
  }

  .consent-panel {
    border-radius: var(--radius-btn);
    box-shadow: 0 10px 32px rgba(36, 28, 20, 0.16);
  }
}

.consent-panel h2 {
  font-size: 1.15rem;
  margin-bottom: 0.45em;
}

.consent-panel > p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 0.7em;
}

.consent-panel > p a {
  color: var(--accent);
}

.consent-manage {
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--secondary);
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 0.18em;
  margin-bottom: 12px;
}

.consent-cats {
  display: grid;
  gap: 10px;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 240ms ease, opacity 200ms ease, margin 200ms ease;
  margin: 0;
}

.consent-cats.is-open {
  max-height: 280px;
  opacity: 1;
  margin: 0 0 14px;
}

.consent-cat {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  align-items: center;
  padding: 10px 12px;
  border: 1px solid var(--border);
  background: var(--surface);
  border-radius: var(--radius-btn);
}

.consent-cat strong {
  display: block;
  font-size: 0.88rem;
}

.consent-cat span {
  display: block;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.consent-cat input {
  width: 18px;
  height: 18px;
}

.consent-actions {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 8px;
}

.consent-actions button {
  font: inherit;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 10px 6px;
  border-radius: var(--radius-btn);
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  cursor: pointer;
}

.consent-actions button:hover {
  box-shadow: 0 4px 14px rgba(36, 28, 20, 0.12);
}

.consent-actions .consent-accept {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--on-accent);
}

.consent-policy {
  display: block;
  margin-top: 10px;
  font-size: 0.8rem;
  color: var(--text-muted);
}

@media (max-width: 480px) {
  .consent-actions {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .consent-panel {
    animation: none;
  }

  .consent-cats {
    transition: none;
  }
}
