/*
  Reusable UI components. Each block below is a self-contained component
  (BEM-lite naming: .block, .block-element, .block-modifier).
  See docs/design-system.md for the component catalog.
*/

/* ---------- Nav ---------- */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 26px 56px;
  mix-blend-mode: difference;
}
.nav-word {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 19px;
  letter-spacing: 0.02em;
}
.nav-links {
  display: flex;
  gap: 36px;
  font-size: 14px;
  letter-spacing: 0.04em;
}
.nav-links a { text-decoration: none; }

/* ---------- Button ---------- */
.btn {
  padding: 16px 32px;
  font-family: var(--font-body);
  font-size: 16px;
  letter-spacing: 0.02em;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  border: 1px solid var(--brass);
}
.btn-solid { background: var(--brass); color: var(--espresso-deep); }
.btn-solid:hover { background: var(--brass-bright); }
.btn-outline { color: var(--ivory); background: transparent; }
.btn-outline:hover { border-color: var(--brass-bright); color: var(--brass-bright); }

/* ---------- Section heading ---------- */
.kicker {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 17px;
  color: var(--brass-bright);
  margin-bottom: 26px;
}
.section-label {
  font-size: 14px;
  font-style: italic;
  color: var(--brass-bright);
  margin-bottom: 14px;
}
.section-title {
  font-size: clamp(30px, 4vw, 44px);
  max-width: 20ch;
  margin-bottom: 60px;
}

/* ---------- Menu list (rates) ---------- */
.menu-list { display: flex; flex-direction: column; }

.menu-row {
  display: flex;
  align-items: baseline;
  gap: 14px;
  padding: 26px 0;
  border-bottom: 1px solid var(--rule);
}
.menu-row:first-child { border-top: 1px solid var(--rule); }

.menu-name {
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--ivory);
  white-space: nowrap;
}
.menu-dots {
  flex: 1;
  border-bottom: 1px dotted var(--brass-dim);
  transform: translateY(-6px);
}
.menu-price {
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--brass-bright);
  white-space: nowrap;
}
.menu-price sup { font-size: 13px; color: var(--brass-dim); }

.day-pass {
  margin-top: 40px;
  padding: 34px 36px;
  border: 1px solid var(--brass-dim);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
  background: linear-gradient(120deg, rgba(184,137,90,0.08), transparent);
}
.day-pass .menu-name { font-size: 26px; }
.day-pass .menu-price { font-size: 36px; }

/* ---------- Info item ---------- */
.info-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
}
.info-item { border-top: 1px solid var(--rule); padding-top: 22px; }
.info-item h3 {
  font-size: 22px;
  font-style: italic;
  color: var(--brass-bright);
  margin-bottom: 10px;
}
.info-item p { color: var(--ivory-dim); font-size: 16px; }

/* ---------- Cue mark (decorative badge) ---------- */
.cue-mark {
  justify-self: center;
  width: 160px; height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, var(--ivory) 0%, var(--ivory) 8%, transparent 9%),
              radial-gradient(circle at 50% 50%, #241a10 0%, #241a10 45%, transparent 46%),
              var(--espresso);
  border: 1px solid var(--rule);
  position: relative;
}
.cue-mark::after {
  content: "N";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 22px;
  color: var(--brass-bright);
}

/* ---------- Footer ---------- */
footer {
  padding: 80px 56px 44px;
  background: var(--espresso-deep);
  border-top: 1px solid var(--rule);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}
footer .foot-brand {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 20px;
  color: var(--brass-bright);
}
footer .foot-info { text-align: right; color: var(--ivory-dim); font-size: 14px; line-height: 1.8; }
