:root {
  --bg: #111214;
  --surface: #191b1e;
  --surface-alt: #212429;
  --text: #eceef0;
  --text-muted: #a2a8b0;
  --border: rgba(236, 238, 240, 0.14);
  --accent: #e0a43b;
  --accent-2: #7d8b99;
  --secondary: #262a30;
  --on-accent: #15161a;
  --deep: #0a0b0d;
  --radius: 4px;
  --radius-btn: 0px;
  --shadow-card: 0 2px 12px rgba(0, 0, 0, 0.06);
  --font-heading: Cambria, Georgia, serif;
  --font-body: Calibri, "Segoe UI", Arial, sans-serif;
  --content-max: 1160px;
  --section-pad: 112px;
  --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: 18px;
  line-height: 1.85;
  -webkit-font-smoothing: antialiased;
}

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

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

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

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

h1 {
  font-size: clamp(38px, 6vw, 66px);
  line-height: 1.14;
}

h2 {
  font-size: clamp(24px, 4vw, 38px);
}

h3 {
  font-size: clamp(20px, 2.4vw, 26px);
}

p {
  margin: 0 0 1.1em;
}

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

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

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

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.5rem;
  border: 1px solid var(--accent);
  border-radius: var(--radius-btn);
  background: var(--accent);
  color: var(--on-accent);
  font-family: var(--font-body);
  font-size: 15px;
  letter-spacing: 0.04em;
  text-decoration: none;
  cursor: pointer;
  transition: background 160ms ease, color 160ms ease, border-color 160ms ease;
}

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

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

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

.btn--full {
  width: 100%;
}

.btn:disabled {
  opacity: 0.6;
  cursor: wait;
}

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

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

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

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

.section--tight {
  padding: calc(var(--section-pad) * 0.7) 0;
}

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

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

.independence p {
  margin: 0;
  font-size: 12px;
  line-height: 1.5;
  color: var(--text-muted);
  text-align: center;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(17, 18, 20, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}

.nav-bar {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  min-height: var(--header-h);
  padding: 0.75rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--text);
  text-decoration: none;
  font-family: var(--font-heading);
  font-size: 18px;
  letter-spacing: 0.4px;
  white-space: nowrap;
}

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

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

.nav-center {
  display: flex;
  justify-content: center;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.35rem 1.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 0.02em;
}

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

.nav-contact a {
  color: var(--text);
  text-decoration: none;
  font-size: 14px;
  border-bottom: 1px solid var(--accent);
  padding-bottom: 2px;
}

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

.nav-panel {
  display: none;
}

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

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

.hero {
  padding: calc(var(--section-pad) * 0.85) 0 var(--section-pad);
  text-align: center;
}

.hero__intro {
  max-width: 38rem;
  margin: 0 auto 3.5rem;
  color: var(--text-muted);
}

.hero__frames {
  display: grid;
  grid-template-columns: 1fr 1.15fr 1fr;
  gap: 1.25rem;
  align-items: end;
  max-width: 960px;
  margin: 0 auto;
}

.hero__frame {
  margin: 0;
}

.hero__frame img {
  width: 100%;
  object-fit: cover;
  border-radius: var(--radius);
}

.hero__frame--short img {
  height: 220px;
}

.hero__frame--tall img {
  height: 340px;
}

.hero__frame--mid img {
  height: 280px;
}

.hero__frame figcaption {
  margin-top: 0.65rem;
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
}

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

.cat-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 480px;
  text-decoration: none;
  color: inherit;
}

.cat-card img {
  width: 100%;
  height: 100%;
  min-height: 480px;
  object-fit: cover;
  border-radius: var(--radius);
}

.cat-card__panel {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  background: var(--surface);
  padding: 1.5rem 1.35rem;
  border-radius: var(--radius);
}

.cat-card__panel h3 {
  margin-bottom: 0.45rem;
  color: var(--text);
}

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

.cat-card__panel span {
  color: var(--accent);
  font-size: 14px;
  letter-spacing: 0.04em;
}

.approach-lead {
  max-width: 40rem;
  margin: 0 auto 3rem;
  text-align: center;
}

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

.approach-block {
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
}

.approach-block h3 {
  margin-bottom: 0.75rem;
}

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

.amenities-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 3rem;
}

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

.amenity-item:first-child,
.amenity-item:nth-child(2) {
  border-top: 1px solid var(--border);
}

.amenity-item strong {
  font-family: var(--font-heading);
  font-weight: 400;
  letter-spacing: 0.4px;
  color: var(--text);
}

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

.regions-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

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

.region-tile h3 {
  font-size: 20px;
  margin-bottom: 0.55rem;
  color: var(--accent);
}

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

.look-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem 3rem;
}

.look-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem 1.25rem;
}

.look-num {
  font-family: var(--font-heading);
  font-size: 28px;
  color: var(--accent);
  line-height: 1;
}

.look-item h3 {
  margin: 0 0 0.5rem;
  grid-column: 2;
}

.look-item p {
  grid-column: 2;
  color: var(--text-muted);
  font-size: 16px;
  margin: 0;
}

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

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

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

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

.page-hero {
  padding: calc(var(--section-pad) * 0.75) 0 2.5rem;
}

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

.venue-rows {
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
}

.venue-row {
  display: grid;
  grid-template-columns: 40% 1fr;
  gap: 2.5rem;
  align-items: center;
}

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

.venue-row--flip .venue-row__media {
  order: 2;
}

.venue-row--flip .venue-row__body {
  order: 1;
}

.venue-row__media {
  margin: 0;
  box-shadow: var(--shadow-card);
}

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

.venue-row__title {
  font-family: var(--font-heading);
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 400;
  letter-spacing: 0.4px;
  margin: 0;
  line-height: 1.25;
}

.venue-row__meta {
  display: block;
  margin: 0.35rem 0 1rem;
  color: var(--text-muted);
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.02em;
}

.venue-row__body p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.catalog-close {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  color: var(--text-muted);
  max-width: 40rem;
}

.past-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem 2rem;
}

.past-card:last-child:nth-child(odd) {
  grid-column: 1 / -1;
  max-width: 560px;
  justify-self: center;
  width: 100%;
}

.past-card {
  display: flex;
  flex-direction: column;
}

.past-card__media {
  margin: 0 0 1.25rem;
  box-shadow: var(--shadow-card);
}

.past-card__media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius);
}

.past-card .kicker {
  margin-bottom: 0.5rem;
  font-size: 11px;
}

.past-card h2 {
  font-size: clamp(22px, 2.8vw, 28px);
  margin-bottom: 0.75rem;
}

.past-card p {
  color: var(--text-muted);
  flex: 1;
  margin-bottom: 1.25rem;
}

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

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

.editorial-block h2 {
  margin-bottom: 1rem;
}

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

.contact-band {
  background: var(--surface-alt);
  padding: calc(var(--section-pad) * 0.65) 0;
}

.contact-band p {
  max-width: 40rem;
  color: var(--text-muted);
}

.contact-email {
  margin-top: 1.25rem;
}

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

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

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

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

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

.form-field label {
  font-size: 14px;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  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: 160px;
  resize: vertical;
}

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

.agree-row {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin: 1.5rem 0 1rem;
}

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

.agree-row label {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.55;
}

.agree-error,
.form-error {
  color: #e07a7a;
  font-size: 14px;
  margin: 0.35rem 0 0;
}

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

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

.confirm-panel h2 {
  margin-bottom: 0.75rem;
}

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

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

.legal-body {
  padding: calc(var(--section-pad) * 0.7) 0 var(--section-pad);
}

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

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

.legal-body h2 {
  margin-top: 2.25rem;
  margin-bottom: 0.75rem;
}

.legal-body h3 {
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
  font-size: 20px;
}

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

.sitemap-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.15rem;
  align-items: baseline;
  font-size: 17px;
  line-height: 2;
}

.sitemap-list a {
  color: var(--text);
  text-decoration: none;
  border-bottom: 1px solid var(--border);
}

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

.sitemap-dot {
  color: var(--text-muted);
  padding: 0 0.55rem;
  user-select: none;
}

.site-footer {
  background: var(--surface);
  border-top: 2px solid var(--accent);
  margin-top: 0;
}

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

.footer-band:last-child {
  border-bottom: 0;
}

.footer-brand-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2rem;
  align-items: start;
}

.footer-blurb {
  color: var(--text-muted);
  font-size: 15px;
  max-width: 36rem;
  margin: 0;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.footer-group h3 {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.4px;
  margin: 0 0 1rem;
  color: var(--text);
}

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

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

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

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

.footer-bottom {
  text-align: center;
  padding: 2rem 0 2.5rem;
}

.footer-bottom .independence-copy {
  font-size: 12px;
  color: var(--text-muted);
  max-width: 52rem;
  margin: 0 auto 1.25rem;
  line-height: 1.55;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.35rem 1.25rem;
  margin-bottom: 1rem;
}

.footer-legal a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 13px;
}

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

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

.consent-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 80;
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 1.25rem 0;
}

.consent-inner {
  width: min(100% - 48px, var(--content-max));
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1.4fr auto 1fr;
  gap: 1.5rem;
  align-items: start;
}

.consent-copy {
  margin: 0;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.6;
}

.consent-copy a {
  color: var(--accent);
}

.consent-divider {
  width: 1px;
  align-self: stretch;
  background: var(--border);
}

.consent-controls {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.consent-cats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
}

.consent-cat {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 13px;
  color: var(--text-muted);
}

.consent-cat input {
  accent-color: var(--accent);
}

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

.consent-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1.25rem;
}

.consent-actions .btn {
  padding: 0.65rem 1.1rem;
  font-size: 14px;
}

.consent-link {
  background: none;
  border: 0;
  padding: 0;
  color: var(--text-muted);
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 13px;
}

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

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

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

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

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

  .approach-grid,
  .regions-row,
  .arrival-row {
    grid-template-columns: 1fr 1fr;
  }

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

  .hero__frame--short img {
    height: 180px;
  }

  .hero__frame--tall img {
    height: 280px;
  }

  .hero__frame--mid img {
    height: 230px;
  }
}

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

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

  .nav-center,
  .nav-contact {
    display: none;
  }

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

  .nav-panel {
    display: none;
    grid-column: 1 / -1;
    padding: 0.5rem 0 1rem;
    border-top: 1px solid var(--border);
  }

  .nav-panel .nav-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.85rem;
    margin-bottom: 1rem;
  }

  .nav-panel .nav-contact {
    display: block;
  }

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

  .consent-inner {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .consent-divider {
    width: 100%;
    height: 1px;
  }
}

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

  .container {
    width: min(100% - 32px, var(--content-max));
  }

  .hero__frames {
    display: flex;
    overflow-x: auto;
    gap: 1rem;
    align-items: stretch;
    scroll-snap-type: x mandatory;
    padding-bottom: 0.5rem;
    max-width: none;
  }

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

  .hero__frame img,
  .hero__frame--short img,
  .hero__frame--tall img,
  .hero__frame--mid img {
    height: 240px;
  }

  .approach-grid,
  .amenities-grid,
  .regions-row,
  .look-grid,
  .arrival-row,
  .past-grid,
  .form-grid,
  .footer-brand-row,
  .footer-links {
    grid-template-columns: 1fr;
  }

  .amenity-item:nth-child(2) {
    border-top: 0;
  }

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

  .venue-row--flip .venue-row__media,
  .venue-row--flip .venue-row__body {
    order: initial;
  }

  .venue-row__media img {
    aspect-ratio: 1 / 1;
  }

  .look-item {
    grid-template-columns: auto 1fr;
  }
}

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

  body {
    font-size: 16px;
  }

  .brand span {
    font-size: 16px;
  }

  .cat-card,
  .cat-card img {
    min-height: 320px;
  }

  .hero__frame {
    flex-basis: 85%;
  }

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

  .footer-legal {
    flex-direction: column;
    gap: 0.55rem;
  }
}
