:root {
  --bg: #f5f7f3;
  --surface: #ffffff;
  --surface-alt: #e9eee5;
  --text: #1a221a;
  --text-muted: #525d51;
  --border: rgba(26, 34, 26, 0.12);
  --accent: #5c7350;
  --accent-2: #9c6f3c;
  --secondary: #2c3a2a;
  --on-accent: #ffffff;
  --dark: #161f16;
  --font-heading: 'Hoefler Text', 'Book Antiqua', Georgia, serif;
  --font-body: Avenir, 'Segoe UI', Arial, sans-serif;
  --radius: 0px;
  --radius-btn: 6px;
  --max: 1080px;
  --section-pad: 76px;
  --header-h: 64px;
}

*,
*::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: 2px;
}

a:hover {
  color: var(--accent-2);
}

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

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

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

h3 {
  font-size: clamp(18px, 2.2vw, 22px);
}

p {
  margin: 0 0 1em;
}

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

.kicker {
  display: block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin-bottom: 12px;
}

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

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

.band--alt {
  background: linear-gradient(180deg, var(--surface-alt), var(--bg));
}

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

.band--plain {
  background: var(--bg);
}

.notice-strip {
  background: var(--surface-alt);
  border-bottom: 1px solid var(--border);
  padding: 8px 0;
}

.notice-strip p {
  margin: 0;
  font-size: 12px;
  line-height: 1.45;
  color: var(--text-muted);
  text-align: center;
  width: min(100% - 32px, var(--max));
  margin-inline: auto;
}

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

.nav-inner {
  width: min(100% - 40px, var(--max));
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: var(--header-h);
}

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

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

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px 18px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--text-muted);
  padding: 6px 0;
  border-bottom: 2px solid transparent;
}

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

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--border);
  border-radius: var(--radius-btn);
  background: var(--surface);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  padding: 0;
}

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

.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background: var(--text);
}

.nav-toggle span::before {
  top: -6px;
}

.nav-toggle span::after {
  top: 6px;
}

.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 12px 20px;
  border-radius: var(--radius-btn);
  border: 1px solid var(--accent);
  background: var(--accent);
  color: var(--on-accent);
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  background: var(--secondary);
  border-color: var(--secondary);
  color: var(--on-accent);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(26, 34, 26, 0.14);
}

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

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

.btn--dark {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.35);
  color: #fff;
}

.btn--dark:hover {
  background: #fff;
  color: var(--dark);
  border-color: #fff;
}

.hero-quiet {
  background: var(--surface-alt);
  padding: calc(var(--section-pad) + 12px) 0 var(--section-pad);
  border-bottom: 1px solid var(--border);
}

.hero-quiet .accent-rule {
  width: 48px;
  height: 2px;
  background: var(--accent);
  margin-bottom: 18px;
  border: 0;
}

.hero-quiet .lead {
  max-width: 62ch;
  color: var(--text-muted);
  font-size: 18px;
  margin: 0;
}

.cat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  max-width: 820px;
  margin-inline: auto;
}

.cat-card {
  position: relative;
  border: 1px solid var(--border);
  background: var(--surface);
  overflow: hidden;
  min-height: 420px;
  height: 420px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cat-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(26, 34, 26, 0.1);
}

.cat-card__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.cat-card:hover .cat-card__img {
  transform: scale(1.02);
}

.cat-card__panel {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 22px 24px 26px;
}

.cat-card__panel h2 {
  font-size: clamp(22px, 2.8vw, 28px);
  margin-bottom: 8px;
}

.cat-card__panel p {
  color: var(--text-muted);
  font-size: 15px;
  margin-bottom: 14px;
}

.cat-card__panel a {
  font-weight: 600;
  text-decoration: none;
  color: var(--accent);
  border-bottom: 1px solid var(--accent);
}

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

.amenity-block {
  padding: 28px 24px;
  border-right: 1px solid var(--border);
}

.amenity-block:last-child {
  border-right: 0;
}

.amenity-block h3 {
  margin-bottom: 10px;
  color: var(--accent);
}

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

.quote-block {
  max-width: 48ch;
  margin-inline: auto;
  text-align: center;
}

.quote-block blockquote {
  margin: 0 0 18px;
  font-family: var(--font-heading);
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 700;
  letter-spacing: -0.6px;
  line-height: 1.25;
  color: var(--accent);
}

.quote-block .frame {
  color: var(--text-muted);
  font-size: 16px;
  margin: 0;
}

.accordion {
  border-top: 1px solid var(--border);
  max-width: 720px;
  margin-inline: auto;
}

.accordion-item {
  border-bottom: 1px solid var(--border);
}

.accordion-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 4px;
  background: none;
  border: 0;
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.4px;
  color: var(--secondary);
  text-align: left;
}

.accordion-btn::after {
  content: "+";
  font-family: var(--font-body);
  font-size: 22px;
  color: var(--accent);
  flex-shrink: 0;
}

.accordion-item.is-open .accordion-btn::after {
  content: "–";
}

.accordion-panel {
  display: none;
  padding: 0 4px 20px;
  color: var(--text-muted);
}

.accordion-item.is-open .accordion-panel {
  display: block;
}

.closing-strip {
  text-align: center;
  padding: 48px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.closing-strip h2 {
  margin-bottom: 12px;
}

.closing-strip p {
  max-width: 56ch;
  margin-inline: auto;
  color: var(--text-muted);
}

.page-title {
  padding: calc(var(--section-pad) - 12px) 0 40px;
  border-bottom: 1px solid var(--border);
  background: var(--surface-alt);
}

.page-title .lead {
  max-width: 62ch;
  color: var(--text-muted);
  margin: 0;
}

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

.venue-card {
  border: 1px solid var(--border);
  background: var(--surface);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.venue-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(26, 34, 26, 0.1);
}

.venue-card:hover img {
  transform: scale(1.02);
}

.venue-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.venue-card__body {
  padding: 28px 26px 8px;
  background: var(--surface);
}

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

.venue-card__loc {
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.venue-card__body p:last-of-type {
  color: var(--text);
  font-size: 15px;
  margin-bottom: 0;
}

.venue-card__action {
  padding: 20px 26px 28px;
  margin-top: auto;
}

.venue-card--img-bottom {
  display: flex;
  flex-direction: column;
}

.venue-card--img-bottom .venue-card__body {
  order: 1;
  padding-bottom: 20px;
}

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

.venue-card--img-bottom .venue-card__action {
  order: 3;
  border-top: 1px solid var(--border);
}

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

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

.editorial-col {
  max-width: 70ch;
  margin-inline: auto;
}

.editorial-section {
  padding: 36px 0;
  border-bottom: 1px solid var(--border);
}

.editorial-section:first-child {
  padding-top: 0;
}

.editorial-section:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.editorial-section h2 {
  margin-bottom: 16px;
}

.editorial-section p {
  color: var(--text);
}

.contact-layout {
  padding: var(--section-pad) 0;
  max-width: 560px;
  margin-inline: auto;
}

.contact-layout .intro {
  margin-bottom: 28px;
  color: var(--text-muted);
}

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

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

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 6px;
}

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

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

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

.agree-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 8px 0 20px;
}

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

.agree-row label {
  font-size: 14px;
  color: var(--text);
  line-height: 1.5;
}

.agree-error {
  display: none;
  color: #8b2e2e;
  font-size: 13px;
  margin: -8px 0 16px;
}

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

.form-error {
  display: none;
  color: #8b2e2e;
  font-size: 14px;
  margin-bottom: 14px;
}

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

.contact-email {
  margin-top: 24px;
  color: var(--text-muted);
  font-size: 15px;
}

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

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

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

.legal-body {
  padding: var(--section-pad) 0;
  max-width: 70ch;
  margin-inline: auto;
}

.legal-body h2 {
  margin-top: 1.6em;
  margin-bottom: 0.5em;
}

.legal-body h3 {
  margin-top: 1.2em;
  margin-bottom: 0.4em;
}

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

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

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

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

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

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

.site-footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.82);
  padding: 56px 0 0;
  margin-top: 0;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
}

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

.footer-grid {
  width: min(100% - 40px, var(--max));
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(180px, 240px) 1fr;
  gap: 40px 56px;
  padding-bottom: 40px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.footer-group h3 {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 0 0 12px;
}

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

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

.footer-group a,
.footer-group button {
  font-size: 14px;
}

.footer-group button {
  background: none;
  border: 0;
  padding: 0;
  color: rgba(255, 255, 255, 0.78);
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 14px;
}

.footer-group button:hover {
  color: #fff;
}

.footer-brand .brand {
  color: #fff;
  margin-bottom: 16px;
}

.footer-brand p {
  max-width: 48ch;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 16px;
}

.footer-brand .mailto {
  font-size: 14px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 28px 20px 36px;
  text-align: center;
}

.footer-bottom .ind-notice {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
  max-width: 72ch;
  margin: 0 auto 16px;
}

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

.footer-legal a {
  font-size: 13px;
}

.footer-copy {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
}

.consent-backdrop {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.consent-backdrop[hidden] {
  display: none;
}

.consent-modal {
  width: min(100%, 520px);
  background: var(--dark);
  color: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 28px 26px 24px;
  max-height: min(90vh, 640px);
  overflow-y: auto;
}

.consent-modal h2 {
  color: #fff;
  font-size: clamp(22px, 3vw, 28px);
  margin-bottom: 10px;
}

.consent-modal p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  margin-bottom: 20px;
}

.consent-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 14px;
}

.consent-actions .btn {
  flex: 1 1 auto;
  text-align: center;
  min-width: 140px;
}

.consent-manage-link,
.consent-policy {
  display: inline-block;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
  font-family: var(--font-body);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.consent-manage-link {
  margin-right: 16px;
}

.consent-policy {
  color: rgba(255, 255, 255, 0.65);
}

.consent-cats {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 20px;
}

.consent-cat {
  border: 1px solid rgba(255, 255, 255, 0.14);
  padding: 14px 14px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.consent-cat label {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
}

.consent-cat p {
  font-size: 13px;
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.6);
}

.consent-cat input {
  margin-top: 2px;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.consent-back {
  margin-bottom: 16px;
}

.section-head {
  margin-bottom: 36px;
  max-width: 58ch;
}

.section-head p {
  color: var(--text-muted);
  margin: 0;
}

@media (max-width: 1024px) {
  .amenity-row {
    grid-template-columns: 1fr 1fr;
  }

  .amenity-block:nth-child(2) {
    border-right: 0;
  }

  .amenity-block:nth-child(1),
  .amenity-block:nth-child(2) {
    border-bottom: 1px solid var(--border);
  }

  .amenity-block:nth-child(3) {
    border-right: 1px solid var(--border);
  }
}

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

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    align-items: stretch;
    padding: 12px 20px 20px;
    gap: 0;
    display: none;
  }

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

  .nav-links a {
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
  }

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

  .site-header {
    position: sticky;
  }

  .nav-inner {
    position: relative;
  }
}

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

  .cat-grid,
  .masonry {
    grid-template-columns: 1fr;
  }

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

  .sitemap-list li {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .amenity-row {
    grid-template-columns: 1fr;
  }

  .amenity-block {
    border-right: 0 !important;
    border-bottom: 1px solid var(--border);
  }

  .amenity-block:last-child {
    border-bottom: 0;
  }

  .cat-card {
    min-height: 360px;
    height: 360px;
  }
}

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

  .contact-panel,
  .confirm-panel {
    padding: 24px 18px;
  }

  .venue-card__body,
  .venue-card__action {
    padding-left: 18px;
    padding-right: 18px;
  }

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

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

  .hero-quiet .lead {
    font-size: 16px;
  }
}
