:root {
  --bg: #120e0e;
  --surface: #1b1414;
  --surface-alt: #241a1a;
  --text: #f3ece9;
  --text-muted: #b4a29d;
  --border: rgba(243, 236, 233, 0.14);
  --accent: #bf8f4f;
  --accent-2: #9d5a4e;
  --secondary: #2a1e1e;
  --on-accent: #171111;
  --deep: #0a0707;
  --radius: 2px;
  --radius-btn: 999px;
  --font-heading: 'Hoefler Text', 'Book Antiqua', Georgia, serif;
  --font-body: Avenir, 'Segoe UI', Arial, sans-serif;
  --max: 1120px;
  --section-pad: 88px;
  --header-h: 72px;
}

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

html {
  scroll-behavior: smooth;
}

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

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

a {
  color: var(--accent);
  text-decoration: none;
}

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

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

h1 {
  font-size: clamp(34px, 5.4vw, 56px);
  line-height: 1.16;
}

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

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

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;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: var(--radius-btn);
  border: 1px solid transparent;
  background: var(--accent);
  color: var(--on-accent);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  color: var(--on-accent);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

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

.btn--ghost:hover {
  color: var(--text);
  border-color: var(--accent);
  background: var(--secondary);
}

.btn:disabled {
  opacity: 0.65;
  cursor: wait;
  transform: none;
  box-shadow: none;
}

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

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  text-decoration: none;
  flex-shrink: 0;
}

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

.brand__mark {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.brand__name {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.3px;
}

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

.nav-toggle__bars {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
  position: relative;
}

.nav-toggle__bars::before,
.nav-toggle__bars::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background: currentColor;
}

.nav-toggle__bars::before {
  top: -6px;
}

.nav-toggle__bars::after {
  top: 6px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px 20px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.site-nav a {
  color: var(--text-muted);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-variant: small-caps;
  text-decoration: none;
  padding: 6px 0;
  border-bottom: 1px solid transparent;
}

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

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

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

.hero__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px 48px;
  align-items: start;
  position: relative;
}

.hero__intro {
  max-width: 42ch;
  color: var(--text-muted);
  margin-top: 28px;
}

.hero__notice {
  margin-top: 28px;
  font-size: 12px;
  line-height: 1.55;
  color: var(--text-muted);
  max-width: 48ch;
  opacity: 0.85;
}

.hero__media {
  justify-self: end;
  width: min(100%, 380px);
  margin-bottom: -48px;
  position: relative;
  z-index: 2;
}

.hero__media img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: var(--radius);
}

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

.section--tight {
  padding-top: calc(var(--section-pad) - 24px);
}

.section__head {
  margin-bottom: 48px;
  max-width: 56ch;
}

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

.category-rows {
  border-top: 1px solid var(--border);
}

.category-row {
  display: grid;
  grid-template-columns: minmax(160px, 220px) 1fr auto;
  gap: 24px 40px;
  align-items: center;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
}

.category-row h2 {
  font-size: clamp(20px, 2.6vw, 26px);
  margin: 0;
}

.category-row p {
  margin: 0;
  color: var(--text-muted);
}

.arrival-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px 28px;
}

.arrival-note {
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.arrival-note h3 {
  margin-bottom: 12px;
  font-size: 18px;
}

.arrival-note p {
  color: var(--text-muted);
  font-size: 15px;
  margin: 0;
}

.mission {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 48px;
  position: relative;
}

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

.mission__left p,
.mission__right p {
  color: var(--text-muted);
}

.amenities-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 48px;
  border-top: 1px solid var(--border);
}

.amenities-list dt,
.amenities-list dd {
  margin: 0;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}

.amenities-list dt {
  font-weight: 700;
  font-family: var(--font-heading);
  letter-spacing: -0.2px;
  grid-column: 1;
}

.amenities-list dd {
  color: var(--text-muted);
  grid-column: 2;
  margin-left: -100%;
  padding-left: calc(50% + 24px);
}

.amenities-pair {
  display: contents;
}

.amenity-item {
  display: grid;
  grid-template-columns: 1fr;
  gap: 6px;
  padding: 22px 0;
  border-bottom: 1px solid var(--border);
}

.amenity-item:nth-child(odd) {
  padding-right: 24px;
}

.amenity-item:nth-child(even) {
  padding-left: 24px;
  border-left: 1px solid var(--border);
  margin-left: -1px;
}

.amenity-item strong {
  font-family: var(--font-heading);
  font-weight: 600;
  letter-spacing: -0.2px;
}

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

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

.page-hero p {
  color: var(--text-muted);
  max-width: 58ch;
}

.catalog-close {
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  color: var(--text-muted);
  max-width: 62ch;
}

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

.card-overlay {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
  height: 100%;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card-overlay:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
}

.card-overlay__media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 4;
}

.card-overlay__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

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

.card-overlay__title {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0;
  padding: 16px 18px;
  background: rgba(10, 7, 7, 0.72);
  color: var(--text);
  font-family: var(--font-heading);
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 600;
  letter-spacing: -0.3px;
}

.card-overlay__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 22px 20px 24px;
  gap: 12px;
}

.card-overlay__meta {
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--accent);
  text-transform: uppercase;
}

.card-overlay__desc {
  color: var(--text-muted);
  font-size: 15px;
  flex: 1;
  margin: 0;
}

.card-overlay__body .btn {
  align-self: flex-start;
  margin-top: auto;
}

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

.row-card {
  display: grid;
  grid-template-columns: 120px 1fr auto;
  gap: 24px 28px;
  align-items: center;
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.row-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
}

.row-card__thumb {
  width: 120px;
  height: 120px;
  overflow: hidden;
  border-radius: var(--radius);
  flex-shrink: 0;
}

.row-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

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

.row-card__content {
  text-align: center;
  min-width: 0;
}

.row-card__content h2 {
  font-size: clamp(18px, 2.2vw, 24px);
  margin-bottom: 6px;
}

.row-card__meta {
  font-size: 13px;
  color: var(--accent);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.row-card__desc {
  color: var(--text-muted);
  font-size: 15px;
  margin: 0;
}

.row-card__action {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  align-self: stretch;
  gap: 16px;
  padding-left: 24px;
  border-left: 1px solid var(--border);
  grid-column: 3;
}

.band-stack {
  display: flex;
  flex-direction: column;
}

.band {
  padding: 48px 0;
  border-bottom: 1px solid var(--border);
}

.band:first-child {
  padding-top: 8px;
}

.band:last-child {
  border-bottom: none;
}

.band__media {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 21 / 9;
  margin-bottom: 28px;
}

.band__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.band:hover .band__media img {
  transform: scale(1.02);
}

.band__title {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0;
  padding: 18px 22px;
  background: rgba(10, 7, 7, 0.72);
  color: var(--text);
  font-family: var(--font-heading);
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 600;
}

.band__body {
  text-align: center;
  max-width: 56ch;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.band__meta {
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--accent);
}

.band__desc {
  color: var(--text-muted);
  margin: 0;
}

.editorial-stack {
  display: flex;
  flex-direction: column;
  gap: 72px;
  padding-bottom: var(--section-pad);
}

.editorial-block .kicker {
  margin-bottom: 10px;
}

.editorial-block h2 {
  margin-bottom: 20px;
}

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

.prose-column {
  max-width: 70ch;
  margin-inline: auto;
  padding-bottom: var(--section-pad);
}

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

.prose-section:first-of-type {
  padding-top: 8px;
}

.prose-section:last-of-type {
  border-bottom: none;
}

.prose-section h2 {
  margin-bottom: 18px;
}

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

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

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

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

.legal-body h2 {
  margin-top: 36px;
  margin-bottom: 14px;
  font-size: clamp(20px, 2.8vw, 28px);
}

.legal-body h3 {
  margin-top: 24px;
  margin-bottom: 10px;
}

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

.cookie-settings-inline {
  margin: 28px 0;
}

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

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

.contact-email {
  margin-bottom: 32px;
  font-size: 15px;
}

.form-field {
  margin-bottom: 20px;
}

.form-field label {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

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

.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;
}

.form-agree {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin: 24px 0;
}

.form-agree input {
  margin-top: 4px;
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  accent-color: var(--accent);
}

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

.form-agree label a {
  color: var(--accent);
}

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

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

.form-actions {
  margin-top: 8px;
}

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

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

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

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

.sitemap-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--border);
  margin-bottom: var(--section-pad);
}

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

.sitemap-row a {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--text);
  font-size: 18px;
}

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

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

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

.site-footer__inner {
  width: min(100% - 48px, var(--max));
  margin-inline: auto;
  padding: 56px 0 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 28px;
}

.site-footer__blurb {
  max-width: 52ch;
  color: var(--text-muted);
  font-size: 15px;
}

.site-footer__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 0;
  max-width: 820px;
  font-size: 14px;
  line-height: 1.8;
}

.site-footer__links a {
  color: var(--text-muted);
}

.site-footer__links a:hover {
  color: var(--accent);
}

.site-footer__sep {
  color: var(--border);
  margin: 0 10px;
  user-select: none;
}

.site-footer__bottom {
  width: 100%;
  background: var(--surface-alt);
  margin-top: 40px;
  padding: 28px 24px 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
}

.independence-notice {
  font-size: 12px;
  line-height: 1.55;
  color: var(--text-muted);
  max-width: 64ch;
  opacity: 0.9;
}

.site-footer__legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px 0;
  font-size: 13px;
}

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

.site-footer__legal a:hover,
.site-footer__legal button:hover {
  color: var(--accent);
}

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

.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: 24px;
}

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

.consent-modal {
  width: min(100%, 520px);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px 24px;
  max-height: calc(100vh - 48px);
  overflow-y: auto;
}

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

.consent-modal > p {
  color: var(--text-muted);
  font-size: 15px;
  margin-bottom: 10px;
}

.consent-modal__policy {
  display: inline-block;
  margin: 8px 0 20px;
  font-size: 14px;
}

.consent-cats {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  margin-bottom: 22px;
  padding: 16px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.consent-cat {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text-muted);
}

.consent-cat input {
  width: 16px;
  height: 16px;
  accent-color: var(--accent);
}

.consent-cat input:disabled {
  opacity: 0.7;
}

.consent-actions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.consent-actions .btn {
  width: 100%;
  padding: 11px 10px;
  font-size: 13px;
  text-align: center;
}

.consent-manage {
  display: block;
  width: 100%;
  margin-top: 12px;
  background: none;
  border: none;
  color: var(--text-muted);
  font-family: var(--font-body);
  font-size: 13px;
  cursor: pointer;
  text-decoration: underline;
  padding: 4px;
}

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

.consent-cats.is-collapsed {
  display: none;
}

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

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

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

  .site-nav a {
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
    font-size: 12px;
  }

  .site-header {
    position: sticky;
  }

  .site-header__inner {
    position: relative;
  }

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

  .hero__media {
    justify-self: start;
    width: min(100%, 320px);
    margin-bottom: -32px;
  }

  .mission {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .mission::before {
    display: none;
  }

  .arrival-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
  }

  .band__media {
    aspect-ratio: 16 / 9;
  }
}

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

  .wrap,
  .site-header__inner,
  .site-footer__inner {
    width: min(100% - 32px, var(--max));
  }

  .category-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .amenities-list {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .amenity-item:nth-child(odd),
  .amenity-item:nth-child(even) {
    padding-left: 0;
    padding-right: 0;
    border-left: none;
    margin-left: 0;
  }

  .row-card {
    grid-template-columns: 96px 1fr;
    gap: 16px;
  }

  .row-card__thumb {
    width: 96px;
    height: 96px;
  }

  .row-card__content {
    text-align: left;
  }

  .row-card__action {
    grid-column: 1 / -1;
    border-left: none;
    padding-left: 0;
    border-top: 1px solid var(--border);
    padding-top: 16px;
    align-items: flex-start;
  }

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

  .consent-actions {
    grid-template-columns: 1fr;
  }
}

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

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

  .hero__media {
    width: 100%;
  }

  .band__media {
    aspect-ratio: 4 / 3;
  }

  .site-footer__sep {
    margin: 0 8px;
  }
}

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

  .wrap,
  .site-header__inner,
  .site-footer__inner {
    width: min(100% - 24px, var(--max));
  }

  .btn {
    padding: 11px 18px;
  }

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

  .row-card__thumb {
    width: 100%;
    height: 200px;
  }
}
