:root {
  --bg: #141010;
  --surface: #1e1817;
  --surface-alt: #28201e;
  --text: #f4efe9;
  --text-muted: #b6a79c;
  --border: rgba(244,239,233,0.14);
  --accent: #cfa456;
  --accent-2: #8c6a4f;
  --secondary: #2d2422;
  --on-accent: #181312;
  --deep: #0c0908;
  --radius: 0px;
  --font-heading: 'Lucida Bright', Georgia, serif;
  --font-body: 'Lucida Sans Unicode', 'Lucida Grande', sans-serif;
  --max-w: 1400px;
  --section-pad: 136px;
  --header-h: 7.5rem;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.8;
  min-height: 100vh;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius);
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.2s ease;
}

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

h1,
h2,
h3,
h4 {
  font-family: var(--font-heading);
  font-weight: 300;
  letter-spacing: -1.4px;
  line-height: 1.15;
}

h1 {
  font-size: clamp(46px, 8vw, 90px);
  line-height: 1.0;
}

h2 {
  font-size: clamp(30px, 5.2vw, 52px);
}

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

.kicker {
  display: block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
  font-weight: 400;
}

.container {
  width: min(100% - 2.5rem, var(--max-w));
  margin-inline: auto;
}

.section {
  padding: var(--section-pad) 0;
  border-top: 1px solid var(--border);
}

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

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.95rem 1.6rem;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: var(--on-accent);
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  text-decoration: none;
  white-space: nowrap;
}

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

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

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

.notice-strip {
  background: var(--surface-alt);
  border-bottom: 1px solid var(--border);
  padding: 0.55rem 1.25rem;
  text-align: center;
}

.notice-strip p {
  font-size: 0.72rem;
  color: var(--text-muted);
  line-height: 1.5;
  max-width: 900px;
  margin: 0 auto;
}

.site-header {
  background: transparent;
  border-bottom: 1px solid var(--border);
  position: relative;
  z-index: 100;
}

.header-inner {
  width: min(100% - 2.5rem, var(--max-w));
  margin-inline: auto;
  padding: 1.4rem 0 1.1rem;
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text);
  text-decoration: none;
}

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

.brand-name {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 300;
  color: var(--text);
}

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

.nav-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.35rem 2rem;
  list-style: none;
}

.nav-list a {
  color: var(--text-muted);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 0.35rem 0;
  border-bottom: 1px solid transparent;
}

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

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

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

.hero {
  position: relative;
  min-height: max(62vh, 420px);
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12, 9, 8, 0.55) 0%, rgba(20, 16, 16, 0.82) 100%);
}

.hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  width: min(100% - 2.5rem, 900px);
  padding: 4rem 0;
}

.hero__content p {
  margin-top: 1.35rem;
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 36em;
  margin-inline: auto;
}

.cat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  margin-top: 3rem;
}

.cat-card {
  position: relative;
  min-height: 520px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.cat-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cat-card__panel {
  position: relative;
  z-index: 1;
  background: var(--surface);
  margin: 0 1.25rem 1.25rem;
  padding: 1.75rem 1.5rem 1.6rem;
  border: 1px solid var(--border);
}

.cat-card__panel h3 {
  margin-bottom: 0.75rem;
}

.cat-card__panel p {
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  font-size: 0.95rem;
}

.amenities-lead {
  max-width: 42em;
  margin-bottom: 2.5rem;
  color: var(--text-muted);
  font-size: 1.1rem;
}

.tile-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.tile {
  border: 1px solid var(--border);
  padding: 1.5rem 1.25rem;
  background: var(--surface);
}

.tile h3 {
  font-size: 1.15rem;
  margin-bottom: 0.65rem;
  color: var(--accent);
}

.tile p {
  color: var(--text-muted);
  font-size: 0.92rem;
}

.timeline {
  position: relative;
  max-width: 800px;
  margin-top: 2.5rem;
  padding-left: 2rem;
  border-left: 1px solid var(--border);
}

.timeline__item {
  position: relative;
  padding: 0 0 2.5rem 1.75rem;
}

.timeline__item:last-child {
  padding-bottom: 0;
}

.timeline__item::before {
  content: "";
  position: absolute;
  left: -2rem;
  top: 0.45rem;
  width: 9px;
  height: 9px;
  background: var(--accent);
  transform: translateX(-50%);
}

.timeline__item h3 {
  margin-bottom: 0.5rem;
}

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

.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 2rem;
  position: relative;
}

.mission-grid::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  background: var(--border);
  transform: translateX(-50%);
}

.mission-grid p {
  color: var(--text-muted);
  margin-top: 1rem;
}

.mission-grid h2 {
  margin-bottom: 0.5rem;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 3rem;
  margin-top: 2rem;
  align-items: start;
}

.testimonials-grid > div:first-child p {
  color: var(--text-muted);
  margin-top: 1rem;
}

.quote-stack {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.quote {
  border: 1px solid var(--border);
  padding: 1.5rem 1.4rem;
  background: var(--surface);
}

.quote p {
  color: var(--text);
  font-size: 1rem;
}

.quote cite {
  display: block;
  margin-top: 1rem;
  font-style: normal;
  color: var(--accent);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.accordion {
  margin-top: 2.5rem;
  max-width: 860px;
}

.accordion__item {
  border: 1px solid var(--border);
  border-bottom: none;
  background: var(--surface);
}

.accordion__item:last-child {
  border-bottom: 1px solid var(--border);
}

.accordion__btn {
  width: 100%;
  text-align: left;
  background: transparent;
  border: none;
  color: var(--text);
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 300;
  letter-spacing: -0.5px;
  padding: 1.25rem 1.4rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.accordion__btn::after {
  content: "+";
  color: var(--accent);
  font-family: var(--font-body);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.accordion__item.is-open .accordion__btn::after {
  content: "–";
}

.accordion__panel {
  display: none;
  padding: 0 1.4rem 1.35rem;
  color: var(--text-muted);
}

.accordion__item.is-open .accordion__panel {
  display: block;
}

.page-hero {
  padding: 5rem 0 3rem;
  border-bottom: 1px solid var(--border);
}

.page-hero p {
  color: var(--text-muted);
  max-width: 40em;
  margin-top: 1.25rem;
  font-size: 1.08rem;
}

.venue-list {
  display: flex;
  flex-direction: column;
}

.venue-row {
  display: grid;
  grid-template-columns: 120px 1fr auto;
  gap: 2rem;
  align-items: center;
  padding: 2rem 0;
  border-bottom: 1px solid var(--border);
}

.venue-row:first-child {
  border-top: 1px solid var(--border);
}

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

.venue-row__body {
  text-align: center;
}

.venue-row__body .kicker {
  margin-bottom: 0.5rem;
}

.venue-row__body h2 {
  font-size: clamp(22px, 3vw, 32px);
  margin-bottom: 0.65rem;
}

.venue-row__body p {
  color: var(--text-muted);
  font-size: 0.95rem;
  max-width: 36em;
  margin-inline: auto;
}

.venue-row__meta {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-bottom: 0.35rem;
}

.catalog-close {
  padding: 4rem 0 var(--section-pad);
  color: var(--text-muted);
  max-width: 40em;
}

.catalog-close a {
  border-bottom: 1px solid var(--accent);
}

.editorial-lead {
  font-size: clamp(1.2rem, 2.2vw, 1.55rem);
  line-height: 1.65;
  color: var(--text);
  max-width: 100%;
  margin-bottom: 3.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--border);
}

.editorial-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem 4rem;
}

.editorial-block h2 {
  font-size: clamp(24px, 3.2vw, 34px);
  margin-bottom: 1.25rem;
  color: var(--accent);
}

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

.contact-intro {
  background: var(--surface-alt);
  padding: 4.5rem 0;
  border-bottom: 1px solid var(--border);
}

.contact-intro p {
  color: var(--text-muted);
  max-width: 38em;
  margin-top: 1.25rem;
  font-size: 1.05rem;
}

.contact-intro .mailto {
  display: inline-block;
  margin-top: 1.25rem;
}

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

.contact-form {
  max-width: 860px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

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

.form-field label {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.form-field input,
.form-field select,
.form-field textarea {
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 0.9rem 1rem;
  border-radius: var(--radius);
  line-height: 1.4;
}

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

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

.agree-row {
  margin-top: 1.75rem;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 0.65rem;
}

.agree-row input {
  margin-top: 0.35rem;
  width: 1.05rem;
  height: 1.05rem;
  accent-color: var(--accent);
  flex-shrink: 0;
}

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

.agree-row label a {
  border-bottom: 1px solid var(--accent);
}

.form-error {
  color: #e8a090;
  font-size: 0.85rem;
  width: 100%;
  margin-top: 0.25rem;
}

.form-actions {
  margin-top: 2rem;
}

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

.confirm-panel h2 {
  font-size: clamp(26px, 4vw, 40px);
  margin-bottom: 1rem;
}

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

.confirm-panel .ref {
  color: var(--accent);
  letter-spacing: 0.08em;
}

.confirm-panel [data-send-another] {
  margin-top: 1.5rem;
}

.section--editorial {
  padding-top: 3rem;
  border-top: none;
}

.legal-body {
  padding: 4rem 0 var(--section-pad);
}

.legal-body h1 {
  margin-bottom: 0.75rem;
}

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

.legal-body h2 {
  font-size: clamp(24px, 3vw, 34px);
  margin: 2.5rem 0 1rem;
  color: var(--accent);
}

.legal-body h3 {
  margin: 1.5rem 0 0.75rem;
}

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

.legal-body ul {
  padding-left: 1.25rem;
  margin-bottom: 1rem;
}

.sitemap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  padding: 3rem 0 var(--section-pad);
}

.sitemap-col h2 {
  font-size: 0.78rem;
  font-family: var(--font-body);
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 1.25rem;
}

.sitemap-col ul {
  list-style: none;
}

.sitemap-col li {
  margin-bottom: 0.65rem;
}

.sitemap-col a {
  color: var(--text-muted);
}

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

.site-footer {
  background: var(--deep);
  color: var(--text);
  border-top: 1px solid var(--border);
}

.footer-upper {
  width: min(100% - 2.5rem, var(--max-w));
  margin-inline: auto;
  padding: 4rem 0 3rem;
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 2.5rem;
}

.footer-brand .brand {
  margin-bottom: 1.25rem;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.92rem;
  max-width: 28em;
}

.footer-col h3 {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text);
  padding-bottom: 0.65rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 1rem;
}

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

.footer-col li {
  margin-bottom: 0.55rem;
}

.footer-col a {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.footer-col a:hover {
  color: var(--accent);
}

.footer-lower {
  background: #080605;
  border-top: 1px solid var(--border);
  padding: 2rem 1.25rem 2.5rem;
  text-align: center;
}

.footer-lower .independence {
  color: var(--text-muted);
  font-size: 0.78rem;
  max-width: 760px;
  margin: 0 auto 1.25rem;
  line-height: 1.6;
}

.footer-meta {
  color: var(--text-muted);
  font-size: 0.75rem;
  margin-bottom: 0.5rem;
}

.footer-regions {
  color: var(--text-muted);
  font-size: 0.75rem;
  margin-bottom: 1.25rem;
}

.footer-copy {
  color: var(--text-muted);
  font-size: 0.78rem;
  margin-bottom: 0.65rem;
}

.footer-lower [data-cookie-settings] {
  background: transparent;
  border: none;
  color: var(--accent);
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  cursor: pointer;
  text-decoration: underline;
  padding: 0.25rem;
}

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

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

.consent {
  position: fixed;
  z-index: 1000;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  padding: 1.35rem 1.25rem 1.5rem;
  max-height: 90vh;
  overflow-y: auto;
  transform: translateY(110%);
  transition: transform 280ms ease;
}

.consent.is-open {
  transform: translateY(0);
}

.consent__copy {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin-bottom: 1.15rem;
  line-height: 1.65;
}

.consent__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.consent__actions .btn {
  flex: 1 1 auto;
}

.consent__actions .btn--accept {
  order: -1;
}

.consent__link {
  display: inline-block;
  margin-top: 0.9rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
}

.consent__cats {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-bottom: 1.15rem;
}

.consent__cat {
  border: 1px solid var(--border);
  padding: 0.9rem 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.consent__cat label {
  color: var(--text);
  font-size: 0.9rem;
}

.consent__cat span {
  display: block;
  color: var(--text-muted);
  font-size: 0.78rem;
  margin-top: 0.25rem;
}

.consent__cat input {
  width: 1.1rem;
  height: 1.1rem;
  accent-color: var(--accent);
}

.consent__back {
  background: transparent;
  border: none;
  color: var(--accent);
  font-family: var(--font-body);
  font-size: 0.82rem;
  cursor: pointer;
  margin-bottom: 1rem;
  padding: 0;
}

.cookie-settings-inline {
  margin-top: 1.5rem;
}

@media (min-width: 900px) {
  .consent {
    left: auto;
    right: 1.5rem;
    bottom: 1.5rem;
    width: min(420px, calc(100vw - 3rem));
    border: 1px solid var(--border);
    border-left: 3px solid var(--accent);
  }
}

@media (min-width: 600px) {
  .consent__actions {
    flex-wrap: nowrap;
  }
}

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

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

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

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

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

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

  .nav-toggle {
    display: inline-flex;
    grid-column: 2;
    grid-row: 1;
  }

  .nav-row {
    display: none;
    grid-column: 1 / -1;
    border-top: 1px solid var(--border);
    padding-top: 0.75rem;
    margin-top: 0.75rem;
  }

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

  .nav-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.35rem;
  }

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

  .mission-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .mission-grid::before {
    display: none;
  }

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

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

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

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

  .venue-row__thumb {
    width: 96px;
    height: 96px;
  }

  .venue-row__action {
    grid-column: 1 / -1;
  }

  .venue-row__action .btn {
    width: 100%;
  }

  .venue-row__body {
    text-align: left;
  }

  .venue-row__body p {
    margin-inline: 0;
  }

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

  .sitemap-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

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

@media (max-width: 480px) {
  :root {
    --section-pad: 64px;
  }

  .container,
  .header-inner,
  .footer-upper {
    width: min(100% - 1.5rem, var(--max-w));
  }

  .hero__content {
    width: min(100% - 1.5rem, 900px);
  }

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

  .venue-row__thumb {
    width: 100%;
    height: 200px;
  }

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

  .cat-card__panel {
    margin: 0 0.75rem 0.75rem;
  }
}

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

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

  .consent {
    transition: none;
  }
}
