: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;
  --deep: #2a2017;
  --radius: 0px;
  --radius-btn: 2px;
  --font-heading: Optima, Candara, 'Segoe UI', sans-serif;
  --font-body: Georgia, serif;
  --content: 1240px;
  --section-pad: 128px;
  --header-h: 0px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.75;
  color: var(--text);
  background: var(--bg);
  min-height: 100vh;
}

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

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

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

h1,
h2,
h3,
h4 {
  font-family: var(--font-heading);
  font-weight: 500;
  letter-spacing: -1px;
  line-height: 1.15;
  color: var(--text);
}

h1 {
  font-size: clamp(44px, 7.5vw, 84px);
  line-height: 1.04;
}

h2 {
  font-size: clamp(30px, 5vw, 50px);
}

h3 {
  font-size: clamp(22px, 2.5vw, 28px);
}

.kicker {
  font-family: var(--font-heading);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

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

.independence-strip {
  background: var(--surface-alt);
  color: var(--text-muted);
  font-size: 12px;
  line-height: 1.5;
  text-align: center;
  padding: 10px 20px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: transparent;
  transition: background 0.25s ease, border-color 0.25s ease;
  border-bottom: 1px solid transparent;
}

.site-header.is-solid {
  background: var(--surface);
  border-bottom-color: var(--border);
}

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

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  text-decoration: none;
  font-family: var(--font-heading);
  font-size: 20px;
  letter-spacing: -0.5px;
  font-weight: 500;
}

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

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

.nav-row {
  display: flex;
  justify-content: center;
  border-top: 1px solid var(--border);
  padding: 14px 0 18px;
  position: relative;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 28px;
  list-style: none;
}

.nav-links a {
  font-family: var(--font-heading);
  font-size: 14px;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  text-decoration: none;
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
}

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

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border);
  width: 44px;
  height: 44px;
  border-radius: var(--radius-btn);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 1px;
  background: var(--text);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 14px 28px;
  border-radius: var(--radius-btn);
  border: 1px solid var(--accent);
  background: var(--accent);
  color: var(--on-accent);
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.btn:hover {
  background: transparent;
  color: var(--accent);
}

.btn-outline {
  background: transparent;
  color: var(--accent);
}

.btn-outline:hover {
  background: var(--accent);
  color: var(--on-accent);
}

.btn-text {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 15px;
  letter-spacing: 0.04em;
  color: var(--accent);
  text-decoration: none;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}

.btn-text:hover {
  color: var(--secondary);
}

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

.section-alt {
  background: linear-gradient(180deg, var(--bg) 0%, var(--surface-alt) 100%);
}

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

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

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

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

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

.hero {
  padding: 72px 0 96px;
  text-align: center;
}

.hero-copy {
  max-width: 820px;
  margin: 0 auto 64px;
}

.hero-copy p {
  margin-top: 24px;
  color: var(--text-muted);
  font-size: 19px;
}

.hero-frames {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  align-items: end;
  max-width: 980px;
  margin: 0 auto;
}

.hero-frame {
  text-align: left;
}

.hero-frame figcaption {
  font-family: var(--font-heading);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 12px;
}

.hero-frame img {
  width: 100%;
  object-fit: cover;
}

.hero-frame:nth-child(1) img {
  height: 220px;
}

.hero-frame:nth-child(2) img {
  height: 360px;
}

.hero-frame:nth-child(3) img {
  height: 280px;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.category-card {
  border: 1px solid var(--border);
  background: var(--surface);
  padding: 20px;
}

.category-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  margin-bottom: 24px;
}

.category-card h3 {
  margin-bottom: 12px;
}

.category-card p {
  color: var(--text-muted);
  margin-bottom: 20px;
  font-size: 16px;
}

.notes-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--border);
}

.note-item {
  padding: 36px 28px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.note-item:last-child {
  border-right: none;
}

.note-item h3 {
  font-size: 18px;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.note-item p {
  color: var(--text-muted);
  font-size: 16px;
}

.amenities-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.amenity-block {
  border: 1px solid var(--border);
  padding: 36px 28px;
  background: var(--surface);
}

.amenity-block h3 {
  margin-bottom: 14px;
  font-size: 20px;
}

.amenity-block p {
  color: var(--text-muted);
  font-size: 16px;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.split img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}

.split-copy h2 {
  margin-bottom: 24px;
}

.split-copy p {
  color: var(--text-muted);
  margin-bottom: 18px;
}

.page-hero {
  padding: 80px 0 48px;
}

.page-hero p.lead {
  max-width: 720px;
  color: var(--text-muted);
  font-size: 20px;
  margin-top: 20px;
}

.catalog-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
}

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

.venue-card img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  margin-bottom: 24px;
}

.venue-card h2 {
  font-size: clamp(24px, 3vw, 32px);
  margin-bottom: 8px;
}

.venue-meta {
  font-family: var(--font-heading);
  font-size: 13px;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 16px;
  display: block;
}

.venue-card h2,
.venue-row-body h2,
.historic-body h2 {
  display: block;
}

.venue-card p {
  color: var(--text-muted);
  flex: 1;
  margin-bottom: 20px;
}

.venue-card .card-rule {
  border: none;
  border-top: 1px solid var(--border);
  margin: 0 0 20px;
}

.catalog-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.venue-row {
  border: 1px solid var(--border);
  background: var(--surface);
  padding: 20px;
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 28px;
  align-items: center;
}

.venue-row img {
  width: 120px;
  height: 120px;
  object-fit: cover;
}

.venue-row-main {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px 28px;
  align-items: center;
}

.venue-row-body {
  text-align: center;
}

.venue-row-body h2 {
  font-size: clamp(22px, 2.5vw, 28px);
  margin-bottom: 6px;
}

.venue-row-body p {
  color: var(--text-muted);
  font-size: 16px;
}

.venue-row .card-rule {
  display: none;
}

.historic-stack {
  display: flex;
  flex-direction: column;
  gap: 64px;
}

.historic-row {
  display: grid;
  grid-template-columns: 40% 1fr;
  gap: 48px;
  align-items: center;
}

.historic-row.reverse {
  grid-template-columns: 1fr 40%;
}

.historic-row.reverse .historic-media {
  order: 2;
}

.historic-row.reverse .historic-body {
  order: 1;
}

.historic-media img {
  width: 100%;
  height: 360px;
  object-fit: cover;
}

.historic-body h2 {
  font-size: clamp(24px, 3vw, 36px);
  margin-bottom: 12px;
}

.historic-body .accent-rule {
  width: 48px;
  height: 2px;
  background: var(--accent);
  border: none;
  margin: 0 0 20px;
}

.historic-body p {
  color: var(--text-muted);
  margin-bottom: 24px;
}

.catalog-close {
  margin-top: 80px;
  padding-top: 48px;
  border-top: 1px solid var(--border);
  color: var(--text-muted);
  max-width: 640px;
}

.editorial-lead {
  font-size: clamp(22px, 3vw, 30px);
  line-height: 1.45;
  max-width: 920px;
  margin-bottom: 64px;
  color: var(--text);
}

.editorial-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px 64px;
}

.editorial-block h2 {
  font-size: clamp(24px, 2.8vw, 32px);
  margin-bottom: 20px;
}

.editorial-block p {
  color: var(--text-muted);
  margin-bottom: 16px;
}

.contact-wrap {
  max-width: 640px;
  margin: 0 auto;
  padding-bottom: var(--section-pad);
}

.contact-wrap > p {
  color: var(--text-muted);
  margin-bottom: 36px;
}

.contact-panel {
  border: 1px solid var(--border);
  background: var(--surface);
  padding: 40px;
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-family: var(--font-heading);
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 16px;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-btn);
  background: var(--bg);
  color: var(--text);
}

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

.form-agree {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 24px;
  font-size: 15px;
  color: var(--text-muted);
}

.form-agree input {
  margin-top: 4px;
  flex-shrink: 0;
}

.form-error {
  color: var(--accent);
  font-size: 14px;
  margin-top: 8px;
  display: none;
}

.form-error.is-visible {
  display: block;
}

.contact-email-line {
  margin-top: 28px;
  text-align: center;
  color: var(--text-muted);
  font-size: 16px;
}

.confirm-panel {
  border: 1px solid var(--border);
  background: var(--surface);
  padding: 48px 40px;
  text-align: center;
}

.confirm-panel h2 {
  margin-bottom: 16px;
}

.confirm-panel p {
  color: var(--text-muted);
  margin-bottom: 12px;
}

.confirm-panel .btn {
  margin-top: 28px;
}

.legal-body {
  padding-bottom: var(--section-pad);
  max-width: 800px;
}

.legal-body h1 {
  margin-bottom: 12px;
}

.legal-body > p:first-of-type {
  color: var(--text-muted);
  margin-bottom: 40px;
}

.legal-body h2 {
  font-size: clamp(22px, 2.5vw, 28px);
  margin: 40px 0 16px;
}

.legal-body h3 {
  font-size: 20px;
  margin: 28px 0 12px;
}

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

.legal-body ul {
  padding-left: 22px;
  margin-bottom: 16px;
}

.sitemap-list {
  list-style: none;
  max-width: 640px;
  margin-bottom: var(--section-pad);
}

.sitemap-list li {
  border-bottom: 1px solid var(--border);
}

.sitemap-list a {
  display: block;
  padding: 18px 0;
  font-family: var(--font-heading);
  font-size: 18px;
  color: var(--text);
  text-decoration: none;
}

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

.site-footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  margin-top: 40px;
}

.footer-upper {
  width: min(100% - 48px, var(--content));
  margin-inline: auto;
  padding: 72px 0;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 48px;
}

.footer-brand .brand {
  margin-bottom: 20px;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 15px;
  margin-bottom: 16px;
}

.footer-adult {
  font-size: 13px;
  color: var(--text-muted);
}

.footer-group h3 {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 18px;
}

.footer-group ul {
  list-style: none;
}

.footer-group li {
  margin-bottom: 10px;
}

.footer-group a,
.footer-group button {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text);
  text-decoration: none;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}

.footer-group a:hover,
.footer-group button:hover {
  color: var(--accent);
}

.footer-lower {
  background: var(--surface-alt);
  padding: 36px 24px;
  text-align: center;
}

.footer-lower p {
  font-size: 13px;
  color: var(--text-muted);
  max-width: 720px;
  margin: 0 auto 16px;
  line-height: 1.6;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 20px;
  margin-bottom: 16px;
}

.footer-legal a,
.footer-legal button {
  font-size: 13px;
  color: var(--text-muted);
  text-decoration: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  font-family: var(--font-body);
}

.footer-legal a:hover,
.footer-legal button:hover {
  color: var(--accent);
}

.footer-copy {
  font-size: 13px;
  color: var(--text-muted);
}

.consent-bar {
  position: relative;
  z-index: 200;
  background: var(--surface);
  box-shadow: 0 12px 40px rgba(36, 28, 20, 0.12);
  padding: 14px 20px;
  display: none;
}

.consent-bar.is-open {
  display: block;
}

.consent-inner {
  width: min(100%, var(--content));
  margin-inline: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 24px;
}

.consent-copy {
  flex: 1 1 280px;
}

.consent-copy strong {
  display: block;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: -0.3px;
  margin-bottom: 4px;
}

.consent-copy p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}

.consent-copy a {
  font-size: 13px;
}

.consent-cats {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  align-items: center;
}

.consent-cats label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--text-muted);
  font-family: var(--font-heading);
}

.consent-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.consent-actions button {
  font-family: var(--font-heading);
  font-size: 12px;
  letter-spacing: 0.04em;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text);
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

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

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

@media (max-width: 1024px) {
  :root {
    --section-pad: 96px;
  }

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

  .notes-row,
  .amenities-row {
    grid-template-columns: 1fr 1fr;
  }

  .note-item:nth-child(2) {
    border-right: none;
  }
}

@media (max-width: 900px) {
  .nav-toggle {
    display: flex;
  }

  .brand-row {
    justify-content: flex-start;
    padding-right: 56px;
  }

  .nav-row {
    padding: 0;
    border-top: none;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    padding: 12px 0 20px;
    border-top: 1px solid var(--border);
    gap: 0;
  }

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

  .nav-links li {
    border-bottom: 1px solid var(--border);
  }

  .nav-links a {
    display: block;
    padding: 14px 0;
  }

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

  .split {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .split img {
    height: 360px;
  }

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

  .hero-frames {
    gap: 16px;
  }
}

@media (max-width: 768px) {
  :root {
    --section-pad: 72px;
  }

  .container,
  .header-inner,
  .footer-upper {
    width: min(100% - 32px, var(--content));
  }

  .hero-frames {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 16px;
    max-width: none;
    padding-bottom: 8px;
    -webkit-overflow-scrolling: touch;
  }

  .hero-frame {
    flex: 0 0 72%;
    scroll-snap-align: start;
  }

  .hero-frame img,
  .hero-frame:nth-child(1) img,
  .hero-frame:nth-child(2) img,
  .hero-frame:nth-child(3) img {
    height: 260px;
  }

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

  .venue-row {
    grid-template-columns: 96px 1fr;
    gap: 20px;
  }

  .venue-row img {
    width: 96px;
    height: 96px;
  }

  .venue-row-main {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .venue-row-body {
    text-align: left;
  }

  .venue-row .card-rule {
    display: block;
    border: none;
    border-top: 1px solid var(--border);
    margin: 16px 0 16px;
  }

  .venue-row .btn {
    justify-self: start;
  }

  .historic-row,
  .historic-row.reverse {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .historic-row.reverse .historic-media,
  .historic-row.reverse .historic-body {
    order: initial;
  }

  .historic-media img {
    height: 280px;
  }

  .notes-row,
  .amenities-row {
    grid-template-columns: 1fr;
  }

  .note-item {
    border-right: none;
  }

  .footer-upper {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .consent-inner {
    flex-direction: column;
    align-items: stretch;
  }
}

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

  .contact-panel,
  .confirm-panel {
    padding: 28px 20px;
  }
}

@media (max-width: 480px) {
  body {
    font-size: 16px;
  }

  .hero {
    padding: 48px 0 64px;
  }

  .venue-card img {
    height: 240px;
  }

  .split img {
    height: 280px;
  }

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

  .consent-actions button {
    width: 100%;
  }
}
