:root {
  --bg: #071612;
  --ink: #030807;
  --surface: #0d211c;
  --surface-2: #102c25;
  --surface-3: #17231f;
  --text: #f4efe4;
  --muted: #b9ad9d;
  --faint: #81786b;
  --copper: #c97f47;
  --copper-soft: #e0b081;
  --ivory: #fff4dd;
  --emerald: #16463b;
  --river: #173f59;
  --line: rgba(224, 176, 129, 0.24);
  --line-cool: rgba(185, 173, 157, 0.18);
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.42);
  --serif: "Marcellus", Georgia, serif;
  --sans: "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(135deg, rgba(23, 63, 89, 0.2), transparent 28rem),
    radial-gradient(circle at 86% 10%, rgba(201, 127, 71, 0.18), transparent 32rem),
    linear-gradient(180deg, #071612 0%, #0a1714 48%, #040908 100%);
  color: var(--text);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.66;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

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

.site {
  min-height: 100vh;
  overflow: hidden;
}

.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 30;
  border-bottom: 1px solid transparent;
  background: linear-gradient(180deg, rgba(3, 8, 7, 0.82), rgba(3, 8, 7, 0.36), transparent);
  backdrop-filter: blur(12px);
  transition: background 180ms ease, border-color 180ms ease;
}

.header.is-scrolled,
body.menu-open .header {
  border-color: var(--line-cool);
  background: rgba(5, 14, 12, 0.95);
}

.nav-wrap {
  width: min(var(--max), calc(100% - 40px));
  min-height: 74px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand-mark {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(224, 176, 129, 0.65);
  border-radius: 50%;
  color: var(--copper-soft);
  font-family: var(--serif);
  font-size: 16px;
  background: radial-gradient(circle, rgba(201, 127, 71, 0.18), transparent 64%);
}

.brand-copy {
  display: grid;
  line-height: 1.05;
}

.brand-name {
  font-family: var(--serif);
  font-size: 19px;
  letter-spacing: 0;
}

.brand-type {
  color: var(--muted);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 1.9px;
  text-transform: uppercase;
}

.nav-links {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 2px;
}

.nav-link {
  border-radius: 999px;
  color: var(--muted);
  font-size: 13px;
  padding: 8px 10px;
  transition: color 160ms ease, background 160ms ease;
}

.nav-link:hover,
.nav-link.is-active {
  color: var(--ivory);
  background: rgba(201, 127, 71, 0.14);
}

.mobile-menu {
  display: none;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  margin-left: auto;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ivory);
  background: rgba(201, 127, 71, 0.12);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 1px;
  margin: 5px auto;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

body.menu-open .menu-toggle span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

body.menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

body.menu-open .menu-toggle span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.container {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.narrow {
  max-width: 780px;
}

.section {
  position: relative;
  padding: 96px 0;
}

.section.alt {
  border-block: 1px solid var(--line-cool);
  background:
    linear-gradient(90deg, rgba(22, 70, 59, 0.28), transparent),
    rgba(13, 33, 28, 0.72);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--copper-soft);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  line-height: 1.4;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: 0;
}

h1 {
  max-width: 780px;
  margin-bottom: 22px;
  font-size: clamp(42px, 5.2vw, 68px);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(34px, 4.4vw, 54px);
}

h3 {
  margin-bottom: 10px;
  font-size: 27px;
}

.lead {
  max-width: 710px;
  color: var(--muted);
  font-size: 18px;
  font-weight: 300;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 11px 18px;
  color: var(--ivory);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.2px;
  line-height: 1.2;
  text-transform: uppercase;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn.primary {
  background: linear-gradient(180deg, #e0b081, #b66735);
  color: #071612;
  box-shadow: 0 18px 42px rgba(201, 127, 71, 0.22);
}

.btn.secondary {
  border-color: rgba(224, 176, 129, 0.45);
  background: rgba(201, 127, 71, 0.09);
  color: var(--copper-soft);
}

.btn.ghost {
  border-color: rgba(244, 239, 228, 0.24);
  background: rgba(244, 239, 228, 0.03);
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 116px 0 78px;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 32% center;
  opacity: 0.76;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
}

.hero::before {
  background:
    linear-gradient(90deg, rgba(3, 8, 7, 0.16) 0%, rgba(3, 8, 7, 0.46) 44%, rgba(3, 8, 7, 0.96) 80%),
    linear-gradient(180deg, rgba(3, 8, 7, 0.2), #071612 100%);
}

.hero::after {
  background: linear-gradient(180deg, transparent 0%, rgba(7, 22, 18, 0.08) 54%, #071612 100%);
}

.hero-content {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.42fr) minmax(0, 0.58fr);
  gap: 48px;
  align-items: center;
}

.hero-copy {
  grid-column: 2;
  padding-left: 28px;
  border-left: 1px solid rgba(224, 176, 129, 0.36);
}

.hero-actions,
.cta-actions,
.inline-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.age-note,
.hero-note {
  margin-top: 16px;
  color: var(--copper-soft);
  font-size: 13px;
}

.river-tag {
  position: absolute;
  left: 34px;
  bottom: 32px;
  color: rgba(244, 239, 228, 0.66);
  font-size: 11px;
  letter-spacing: 2.2px;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 56px;
  align-items: center;
}

.split.reverse {
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 38px;
}

.stat {
  border-left: 1px solid var(--line);
  padding-left: 16px;
}

.stat strong {
  display: block;
  color: var(--ivory);
  font-family: var(--serif);
  font-size: 38px;
  font-weight: 400;
  line-height: 1;
}

.stat span {
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 1.3px;
  text-transform: uppercase;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  gap: 32px;
  align-items: end;
  margin-bottom: 42px;
}

.section-head p {
  color: var(--muted);
  font-size: 18px;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.card-grid.two,
.detail-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card-grid.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card {
  overflow: hidden;
  border: 1px solid var(--line-cool);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(18, 44, 38, 0.88), rgba(5, 14, 12, 0.92));
  box-shadow: var(--shadow);
}

.card-image {
  aspect-ratio: 1.48 / 1;
  overflow: hidden;
  background: #10201c;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 420ms ease;
}

.card:hover .card-image img {
  transform: scale(1.035);
}

.card-body {
  padding: 24px;
}

.card-kicker {
  display: block;
  margin-bottom: 8px;
  color: var(--copper-soft);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.7px;
  text-transform: uppercase;
}

.card p,
.detail p,
.amenity p,
.legal-copy p {
  color: var(--muted);
}

.card p,
.amenity p {
  font-size: 14px;
}

.meta {
  margin-top: 16px;
  color: rgba(185, 173, 157, 0.86);
  font-size: 12px;
}

.feature-list,
.plain-list {
  display: grid;
  gap: 10px;
  margin: 24px 0;
  padding: 0;
  list-style: none;
}

.feature-list li,
.plain-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
}

.feature-list li::before,
.plain-list li::before {
  content: "";
  flex: 0 0 auto;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--copper);
  box-shadow: 0 0 0 4px rgba(201, 127, 71, 0.12);
}

.image-frame {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line-cool);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.image-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 42%, rgba(3, 8, 7, 0.3));
  pointer-events: none;
}

.image-frame img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.event-list {
  display: grid;
  gap: 14px;
}

.event-item {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr) 150px;
  gap: 22px;
  align-items: start;
  border-bottom: 1px solid var(--line-cool);
  padding: 22px 0;
}

.event-type,
.event-time {
  color: var(--copper-soft);
  font-size: 12px;
  letter-spacing: 1.3px;
  text-transform: uppercase;
}

.event-item h3 {
  font-size: 25px;
}

.event-item p {
  color: var(--muted);
}

.amenity,
.detail {
  border: 1px solid var(--line-cool);
  border-radius: 8px;
  background: rgba(13, 33, 28, 0.76);
}

.amenity {
  min-height: 178px;
  padding: 24px;
}

.detail {
  padding: 28px;
}

.responsible-band {
  border: 1px solid rgba(224, 176, 129, 0.32);
  border-radius: 8px;
  padding: 38px;
  background:
    linear-gradient(135deg, rgba(23, 63, 89, 0.26), transparent),
    rgba(8, 24, 20, 0.92);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.24);
}

.faq {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--line-cool);
}

.faq-button {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  border: 0;
  background: transparent;
  color: var(--text);
  cursor: pointer;
  padding: 24px 0;
  text-align: left;
}

.faq-question {
  font-family: var(--serif);
  font-size: 24px;
  line-height: 1.18;
}

.faq-icon {
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--copper-soft);
}

.faq-icon::before {
  content: "+";
}

.faq-item.is-open .faq-icon::before {
  content: "-";
}

.faq-panel {
  max-height: 0;
  overflow: hidden;
  color: var(--muted);
  transition: max-height 220ms ease;
}

.faq-item.is-open .faq-panel {
  max-height: 240px;
}

.faq-panel p {
  max-width: 780px;
  padding: 0 56px 24px 0;
}

.cta {
  overflow: hidden;
  padding: 98px 0;
  background:
    linear-gradient(90deg, rgba(3, 8, 7, 0.96), rgba(3, 8, 7, 0.72)),
    url("/assets/copper-bar.jpg") center / cover;
}

.page-hero {
  min-height: 470px;
  display: flex;
  align-items: end;
  padding: 132px 0 72px;
  border-bottom: 1px solid var(--line-cool);
  background:
    linear-gradient(90deg, rgba(3, 8, 7, 0.95), rgba(3, 8, 7, 0.66)),
    var(--page-image, url("/assets/hero-riverfront.jpg")) center / cover;
}

.breadcrumb {
  margin: 0 0 10px;
  color: var(--faint);
  font-size: 13px;
}

.breadcrumb a {
  color: var(--copper-soft);
}

.detail-grid {
  display: grid;
  gap: 22px;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 42px;
  align-items: start;
}

.contact-list {
  display: grid;
  gap: 18px;
}

.contact-item {
  border-bottom: 1px solid var(--line-cool);
  padding-bottom: 16px;
}

.contact-item h3 {
  margin-bottom: 4px;
  font-size: 24px;
}

.contact-item p,
.contact-item a {
  color: var(--muted);
}

.form {
  border: 1px solid var(--line-cool);
  border-radius: 8px;
  padding: 28px;
  background: rgba(8, 24, 20, 0.92);
  box-shadow: var(--shadow);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.field {
  display: grid;
  gap: 7px;
}

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

label {
  color: var(--copper-soft);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(185, 173, 157, 0.24);
  border-radius: 8px;
  background: rgba(3, 8, 7, 0.76);
  color: var(--text);
  outline: 0;
  padding: 12px 14px;
}

textarea {
  min-height: 150px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(224, 176, 129, 0.76);
  box-shadow: 0 0 0 3px rgba(201, 127, 71, 0.13);
}

.form-note,
.form-status {
  font-size: 13px;
}

.form-note {
  margin: 16px 0 0;
  color: var(--faint);
}

.form-status {
  min-height: 24px;
  margin-top: 14px;
  color: var(--copper-soft);
}

.legal-page {
  padding-top: 120px;
}

.legal-copy {
  max-width: 900px;
}

.legal-copy section {
  border-top: 1px solid var(--line-cool);
  padding: 26px 0;
}

.legal-copy h2 {
  font-size: 34px;
}

.footer {
  border-top: 1px solid var(--line-cool);
  background: #030807;
}

.footer-main {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.35fr 0.7fr 0.95fr 0.8fr;
  gap: 42px;
  padding: 58px 0 34px;
}

.footer p,
.footer a,
.footer span {
  color: var(--muted);
  font-size: 14px;
}

.footer h2 {
  margin-bottom: 14px;
  font-family: var(--sans);
  color: var(--text);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: 9px;
}

.footer-bottom {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid rgba(185, 173, 157, 0.14);
  padding: 20px 0 30px;
  color: var(--faint);
  font-size: 13px;
}

.age-block {
  border: 1px solid rgba(224, 176, 129, 0.34);
  border-radius: 8px;
  padding: 18px;
  background: rgba(201, 127, 71, 0.08);
}

.age-block strong {
  display: block;
  color: var(--copper-soft);
  font-family: var(--serif);
  font-size: 28px;
}

@media (max-width: 980px) {
  .nav-links,
  .nav-cta {
    display: none;
  }

  .menu-toggle {
    display: inline-block;
  }

  .mobile-menu {
    position: fixed;
    inset: 74px 0 auto 0;
    display: none;
    border-bottom: 1px solid var(--line-cool);
    background: rgba(5, 14, 12, 0.98);
    padding: 18px 20px 26px;
  }

  body.menu-open .mobile-menu {
    display: grid;
    gap: 8px;
  }

  .mobile-menu .nav-link,
  .mobile-menu .btn {
    justify-content: flex-start;
    width: 100%;
    border-radius: 8px;
  }

  .hero-content {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    grid-column: auto;
    max-width: 720px;
    margin-left: auto;
  }

  .split,
  .split.reverse,
  .section-head,
  .contact-layout,
  .footer-main {
    grid-template-columns: 1fr;
  }

  .card-grid,
  .card-grid.two,
  .card-grid.four,
  .detail-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .event-item {
    grid-template-columns: 1fr;
    gap: 6px;
  }
}

@media (max-width: 680px) {
  .container,
  .hero-content,
  .nav-wrap,
  .footer-main,
  .footer-bottom {
    width: min(100% - 28px, var(--max));
  }

  .section {
    padding: 72px 0;
  }

  .hero {
    min-height: 760px;
    align-items: end;
  }

  .hero-media img {
    object-position: 34% center;
  }

  .hero::before {
    background:
      linear-gradient(180deg, rgba(3, 8, 7, 0.12) 0%, rgba(3, 8, 7, 0.72) 40%, #071612 100%),
      linear-gradient(90deg, rgba(3, 8, 7, 0.4), rgba(3, 8, 7, 0.8));
  }

  .hero-copy {
    border-left: 0;
    padding-left: 0;
  }

  h1 {
    font-size: 42px;
  }

  h2 {
    font-size: 35px;
  }

  .lead {
    font-size: 17px;
  }

  .card-grid,
  .card-grid.two,
  .card-grid.four,
  .detail-grid,
  .stats,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .image-frame img {
    min-height: 300px;
  }

  .page-hero {
    min-height: 430px;
    padding-top: 120px;
  }

  .responsible-band,
  .form {
    padding: 22px;
  }

  .faq-question {
    font-size: 22px;
  }

  .faq-panel p {
    padding-right: 0;
  }

  .river-tag {
    display: none;
  }
}
