/* Gniazdo Piratów — Lantern Dock Tavern
   Visual direction: deep harbor night, brass lantern light, aged parchment type.
   Differentiator: full-bleed venue photography + typographic brand presence (not cartoon pirate). */

@font-face {
  font-family: "Cinzel";
  src: url("assets/fonts/Cinzel-Regular.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Libre Baskerville";
  src: url("assets/fonts/LibreBaskerville-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Libre Baskerville";
  src: url("assets/fonts/LibreBaskerville-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Libre Baskerville";
  src: url("assets/fonts/LibreBaskerville-Italic.ttf") format("truetype");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Outfit";
  src: url("assets/fonts/Outfit-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Outfit";
  src: url("assets/fonts/Outfit-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Outfit";
  src: url("assets/fonts/Outfit-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  /* REPLACEABLE IMAGES — swap files in assets/ and keep these paths in sync */
  --img-hero: url("assets/venue-atmosphere-1.jpg");
  --img-about: url("assets/interior-tables.jpg");
  --img-events: url("assets/venue-party.jpg");
  --img-texture: url("assets/header-gp.jpg");

  --ink: #070d12;
  --harbor: #101c28;
  --harbor-mid: #1a2d3f;
  --brass: #c9a227;
  --brass-soft: #d4b45a;
  --lantern: #e09a3e;
  --parchment: #ebe2d4;
  --parchment-dim: #cfc4b2;
  --mist: #8fa0a3;
  --wood: #2c1d14;
  --success: #6f9e6a;
  --error: #c45c4a;

  --font-display: "Cinzel", "Palatino Linotype", "Book Antiqua", Palatino, serif;
  --font-serif: "Libre Baskerville", Georgia, "Times New Roman", serif;
  --font-sans: "Outfit", "Segoe UI", sans-serif;

  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.5rem;
  --space-6: 2rem;
  --space-7: 3rem;
  --space-8: 4.5rem;
  --space-9: 7rem;

  --width: 70rem;
  --header-h: 4.25rem;
  --radius: 2px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-sans);
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--parchment);
  background:
    radial-gradient(ellipse 80% 50% at 10% -10%, rgba(201, 162, 39, 0.08), transparent 50%),
    radial-gradient(ellipse 60% 40% at 100% 0%, rgba(224, 154, 62, 0.06), transparent 45%),
    linear-gradient(180deg, var(--ink) 0%, var(--harbor) 40%, #0c1620 100%);
  background-attachment: fixed;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.035;
  background-image: url("assets/noise.svg");
}

body > * {
  position: relative;
  z-index: 1;
}

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

a {
  color: var(--brass-soft);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
  transition: color 0.2s var(--ease);
}

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--lantern);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 1000;
  padding: var(--space-3) var(--space-4);
  background: var(--brass);
  color: var(--ink);
  font-weight: 700;
}

.skip-link:focus {
  left: var(--space-4);
  top: var(--space-4);
}

.section-shell {
  width: min(100% - 2rem, var(--width));
  margin-inline: auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  margin: 0 0 var(--space-4);
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brass);
}

.eyebrow::before {
  content: "";
  width: 1.75rem;
  height: 1px;
  background: var(--brass);
}

h1,
h2,
h3,
.display {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: 0.02em;
  color: var(--parchment);
}

h1 {
  font-size: clamp(2.35rem, 6vw, 4.25rem);
  margin: 0 0 var(--space-5);
}

h2 {
  font-size: clamp(1.85rem, 4vw, 2.85rem);
  margin: 0 0 var(--space-4);
}

h3 {
  font-size: clamp(1.2rem, 2.2vw, 1.45rem);
  margin: 0 0 var(--space-3);
}

.lead,
.hero-lead {
  font-family: var(--font-serif);
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  line-height: 1.7;
  color: var(--parchment-dim);
  max-width: 36rem;
}

.lead em,
.hero-lead em,
h1 em,
h2 em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--brass-soft);
}

/* —— Header —— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  min-height: var(--header-h);
  padding: var(--space-3) clamp(1rem, 3vw, 2rem);
  background: rgba(7, 13, 18, 0.72);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease);
}

.site-header.is-scrolled {
  background: rgba(7, 13, 18, 0.92);
  border-bottom-color: rgba(201, 162, 39, 0.22);
}

.brand {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  text-decoration: none;
  color: var(--parchment);
  min-width: 0;
}

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

.brand img {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  border: 1px solid rgba(201, 162, 39, 0.45);
  object-fit: cover;
  background: var(--harbor);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand-name {
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.04em;
}

.brand-tag {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mist);
}

.menu-toggle {
  display: none;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-3);
  border: 1px solid rgba(201, 162, 39, 0.35);
  background: transparent;
  color: var(--parchment);
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}

.menu-lines {
  display: block;
  width: 1.1rem;
  height: 2px;
  background: var(--brass);
  box-shadow: 0 5px 0 var(--brass), 0 -5px 0 var(--brass);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(0.75rem, 2vw, 1.35rem);
}

.site-nav a {
  text-decoration: none;
  color: var(--parchment-dim);
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

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

.site-nav a[aria-current="page"] {
  box-shadow: inset 0 -2px 0 var(--brass);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 1rem;
  border: 1px solid var(--brass);
  background: linear-gradient(180deg, rgba(201, 162, 39, 0.2), rgba(201, 162, 39, 0.08));
  color: var(--brass-soft) !important;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-decoration: none !important;
  transition: background 0.25s var(--ease), color 0.25s var(--ease), transform 0.25s var(--ease);
}

.nav-cta:hover {
  background: var(--brass);
  color: var(--ink) !important;
  transform: translateY(-1px);
}

/* —— Buttons —— */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: 0.9rem 1.45rem;
  border: 1px solid transparent;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease);
}

.button-primary {
  background: linear-gradient(180deg, #d4b045 0%, var(--brass) 55%, #a8841c 100%);
  color: var(--ink);
  box-shadow: 0 10px 30px rgba(201, 162, 39, 0.22);
}

.button-primary:hover {
  color: var(--ink);
  transform: translateY(-2px);
  background: linear-gradient(180deg, #e0c05a 0%, var(--brass-soft) 55%, var(--brass) 100%);
}

.button-ghost {
  border-color: rgba(235, 226, 212, 0.35);
  background: rgba(7, 13, 18, 0.35);
  color: var(--parchment);
}

.button-ghost:hover {
  border-color: var(--brass);
  color: var(--brass-soft);
}

.hero-actions,
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  align-items: center;
}

.text-link {
  font-weight: 600;
  text-decoration: none;
  color: var(--parchment-dim);
}

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

/* —— Hero —— */
.hero {
  position: relative;
  min-height: min(92vh, 52rem);
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
}

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

.hero-media img,
.hero-media picture,
.hero-media picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  animation: hero-drift 28s var(--ease) infinite alternate;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(7, 13, 18, 0.88) 0%, rgba(7, 13, 18, 0.55) 48%, rgba(7, 13, 18, 0.35) 100%),
    linear-gradient(0deg, rgba(7, 13, 18, 0.95) 0%, rgba(7, 13, 18, 0.35) 45%, rgba(7, 13, 18, 0.45) 100%);
}

.hero-inner {
  padding: calc(var(--header-h) + var(--space-7)) 0 var(--space-8);
  max-width: 40rem;
}

.hero-brand {
  margin: 0 0 var(--space-4);
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.5vw, 1.45rem);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brass);
}

.hero-meta {
  margin: var(--space-5) 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  font-size: 0.9rem;
  color: var(--mist);
}

.hero-meta strong {
  color: var(--parchment);
  font-weight: 600;
}

.page-hero {
  position: relative;
  padding: calc(var(--header-h) + var(--space-7)) 0 var(--space-7);
  border-bottom: 1px solid rgba(201, 162, 39, 0.15);
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(7, 13, 18, 0.92), rgba(16, 28, 40, 0.85)),
    var(--img-texture) center / cover;
  opacity: 0.55;
  z-index: -1;
}

.page-hero .lead {
  margin: 0;
}

/* —— Sections —— */
.section {
  padding: var(--space-8) 0;
}

.section-tight {
  padding: var(--space-7) 0;
}

.section-head {
  max-width: 38rem;
  margin-bottom: var(--space-6);
}

.section-head p {
  margin: 0;
  color: var(--parchment-dim);
  font-family: var(--font-serif);
}

.split {
  display: grid;
  gap: var(--space-6);
  align-items: center;
}

@media (min-width: 860px) {
  .split {
    grid-template-columns: 1.05fr 0.95fr;
    gap: var(--space-7);
  }

  .split-reverse .split-copy {
    order: 2;
  }
}

.split-media {
  position: relative;
}

.split-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.05);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
}

.split-media::after {
  content: "";
  position: absolute;
  inset: auto -0.75rem -0.75rem auto;
  width: 38%;
  height: 38%;
  border: 1px solid rgba(201, 162, 39, 0.4);
  z-index: -1;
}

.split-copy p {
  color: var(--parchment-dim);
  font-family: var(--font-serif);
}

.split-copy p + p {
  margin-top: var(--space-4);
}

/* —— Trust / years —— */
.trust-band {
  display: grid;
  gap: var(--space-5);
  padding: var(--space-6) 0;
  border-block: 1px solid rgba(201, 162, 39, 0.18);
}

@media (min-width: 720px) {
  .trust-band {
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: var(--space-7);
  }
}

.trust-years {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 10vw, 6rem);
  line-height: 0.9;
  color: var(--brass);
  letter-spacing: -0.02em;
}

.trust-years span {
  display: block;
  font-size: 0.28em;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--parchment-dim);
  margin-top: var(--space-3);
}

.quote-list {
  display: grid;
  gap: var(--space-4);
  margin: 0;
  padding: 0;
  list-style: none;
}

.quote-list blockquote {
  margin: 0;
  padding: 0 0 0 var(--space-4);
  border-left: 2px solid var(--brass);
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--parchment-dim);
}

.quote-list cite {
  display: block;
  margin-top: var(--space-2);
  font-family: var(--font-sans);
  font-style: normal;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--mist);
}

/* —— Feature strips / grids —— */
.feature-grid {
  display: grid;
  gap: var(--space-5);
}

@media (min-width: 720px) {
  .feature-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.feature {
  padding-top: var(--space-4);
  border-top: 1px solid rgba(201, 162, 39, 0.25);
}

.feature p {
  margin: 0;
  color: var(--parchment-dim);
  font-size: 0.98rem;
}

.feature h3 {
  margin-bottom: var(--space-2);
}

/* —— Schedule —— */
.schedule-note {
  display: grid;
  gap: var(--space-3);
  margin-bottom: var(--space-6);
  padding: var(--space-5);
  background: linear-gradient(135deg, rgba(26, 45, 63, 0.7), rgba(16, 28, 40, 0.5));
  border: 1px solid rgba(201, 162, 39, 0.2);
  font-family: var(--font-serif);
  color: var(--parchment-dim);
}

.schedule-note strong {
  color: var(--parchment);
  font-family: var(--font-sans);
  font-weight: 600;
}

.schedule-list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(235, 226, 212, 0.12);
}

.schedule-item {
  display: grid;
  gap: var(--space-2);
  padding: var(--space-5) 0;
  border-bottom: 1px solid rgba(235, 226, 212, 0.12);
  transition: background 0.25s var(--ease);
}

@media (min-width: 640px) {
  .schedule-item {
    grid-template-columns: 10rem 1fr auto;
    align-items: baseline;
    gap: var(--space-5);
  }
}

.schedule-item:hover {
  background: rgba(201, 162, 39, 0.04);
}

.schedule-date {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--brass);
}

.schedule-artist {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin: 0;
  color: var(--parchment);
}

.schedule-time {
  font-size: 0.95rem;
  color: var(--mist);
  white-space: nowrap;
}

/* —— Menu —— */
.menu-grid {
  display: grid;
  gap: var(--space-6);
}

@media (min-width: 800px) {
  .menu-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.menu-board {
  display: block;
  text-decoration: none;
  color: inherit;
}

.menu-board img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 1px solid rgba(201, 162, 39, 0.2);
  transition: transform 0.4s var(--ease), border-color 0.3s var(--ease);
}

.menu-board:hover img {
  transform: scale(1.015);
  border-color: var(--brass);
}

.menu-board figcaption {
  margin-top: var(--space-4);
}

.menu-board h2 {
  font-size: 1.5rem;
  margin-bottom: var(--space-2);
}

.menu-board p {
  margin: 0;
  color: var(--parchment-dim);
  font-family: var(--font-serif);
  font-size: 0.98rem;
}

/* —— Gallery —— */
.photo-strip {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-3);
}

@media (min-width: 720px) {
  .photo-strip {
    grid-template-columns: repeat(4, 1fr);
  }
}

.photo-strip figure {
  margin: 0;
  overflow: hidden;
}

.photo-strip img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.photo-strip figure:hover img {
  transform: scale(1.05);
}

.photo-strip figure:nth-child(even) img {
  aspect-ratio: 3 / 3.4;
}

/* —— Events list —— */
.offer-list {
  margin: var(--space-5) 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: var(--space-3);
}

.offer-list li {
  display: flex;
  gap: var(--space-3);
  align-items: baseline;
  padding: var(--space-3) 0;
  border-bottom: 1px solid rgba(235, 226, 212, 0.1);
  font-family: var(--font-serif);
  color: var(--parchment-dim);
}

.offer-list li::before {
  content: "◆";
  color: var(--brass);
  font-size: 0.65rem;
  transform: translateY(-0.1em);
}

/* —— Merch —— */
.merch {
  display: grid;
  gap: var(--space-6);
  align-items: center;
  padding: var(--space-7);
  background:
    radial-gradient(circle at 80% 20%, rgba(224, 154, 62, 0.12), transparent 40%),
    linear-gradient(160deg, rgba(44, 29, 20, 0.65), rgba(16, 28, 40, 0.9));
  border: 1px solid rgba(201, 162, 39, 0.22);
}

@media (min-width: 800px) {
  .merch {
    grid-template-columns: 0.9fr 1.1fr;
  }
}

.merch img {
  width: min(100%, 22rem);
  margin-inline: auto;
}

/* —— Contact —— */
.contact-grid {
  display: grid;
  gap: var(--space-7);
}

@media (min-width: 860px) {
  .contact-grid {
    grid-template-columns: 1fr 1.05fr;
  }
}

.contact-facts {
  display: grid;
  gap: var(--space-5);
}

.fact dt {
  margin: 0 0 var(--space-1);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brass);
}

.fact dd {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--parchment);
}

.fact a {
  text-decoration: none;
  color: var(--parchment);
}

.fact a:hover {
  color: var(--lantern);
}

.contact-form {
  padding: var(--space-6);
  background: rgba(16, 28, 40, 0.65);
  border: 1px solid rgba(201, 162, 39, 0.2);
}

.form-row {
  margin-bottom: var(--space-4);
}

.form-row label {
  display: block;
  margin-bottom: var(--space-2);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.form-row input,
.form-row textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(235, 226, 212, 0.2);
  border-radius: var(--radius);
  background: rgba(7, 13, 18, 0.55);
  color: var(--parchment);
  font-family: var(--font-sans);
  font-size: 1rem;
}

.form-row textarea {
  min-height: 9rem;
  resize: vertical;
}

.hp-field {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-status {
  margin: var(--space-4) 0 0;
  padding: var(--space-3) var(--space-4);
  font-size: 0.95rem;
}

.form-status.is-pending {
  background: rgba(143, 160, 163, 0.15);
  color: var(--parchment-dim);
}

.form-status.is-success {
  background: rgba(111, 158, 106, 0.18);
  color: #b8d4b4;
}

.form-status.is-error {
  background: rgba(196, 92, 74, 0.18);
  color: #e8b4ab;
}

.map-embed {
  margin-top: var(--space-6);
  border: 1px solid rgba(201, 162, 39, 0.2);
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: var(--harbor-mid);
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(0.35) contrast(1.05);
}

/* —— CTA band —— */
.cta-band {
  padding: var(--space-8) 0;
  text-align: center;
  background:
    linear-gradient(180deg, transparent, rgba(201, 162, 39, 0.06), transparent);
}

.cta-band .lead {
  margin: 0 auto var(--space-5);
}

.cta-band .cta-row {
  justify-content: center;
}

/* —— Footer —— */
.site-footer {
  padding: var(--space-7) 0 var(--space-6);
  border-top: 1px solid rgba(201, 162, 39, 0.2);
  background: rgba(7, 13, 18, 0.85);
}

.footer-grid {
  display: grid;
  gap: var(--space-6);
}

@media (min-width: 720px) {
  .footer-grid {
    grid-template-columns: 1.3fr 1fr 1fr;
  }
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: 0.06em;
  margin: 0 0 var(--space-3);
}

.site-footer p,
.site-footer li {
  color: var(--mist);
  font-size: 0.95rem;
}

.site-footer a {
  color: var(--parchment-dim);
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--lantern);
}

.footer-label {
  margin: 0 0 var(--space-3);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brass);
}

.footer-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: var(--space-2);
}

.footer-bottom {
  margin-top: var(--space-7);
  padding-top: var(--space-4);
  border-top: 1px solid rgba(235, 226, 212, 0.08);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--mist);
}

/* —— Prose (privacy) —— */
.prose {
  max-width: 44rem;
}

.prose h2 {
  margin-top: var(--space-7);
  font-size: 1.45rem;
}

.prose p,
.prose li {
  color: var(--parchment-dim);
  font-family: var(--font-serif);
}

.prose ul {
  padding-left: 1.2rem;
}

/* —— Lightbox —— */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: var(--space-5);
  background: rgba(7, 13, 18, 0.92);
}

.lightbox[hidden] {
  display: none;
}

.lightbox img {
  max-height: min(85vh, 900px);
  max-width: min(94vw, 1000px);
  object-fit: contain;
  border: 1px solid rgba(201, 162, 39, 0.3);
}

.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  border: 1px solid var(--brass);
  background: transparent;
  color: var(--parchment);
  padding: 0.5rem 0.9rem;
  font-family: var(--font-sans);
  cursor: pointer;
}

.lightbox-caption {
  margin-top: var(--space-3);
  text-align: center;
  color: var(--mist);
  font-size: 0.9rem;
}

body.lightbox-open,
body.nav-open {
  overflow: hidden;
}

/* —— Motion —— */
.reveal {
  opacity: 0;
  transform: translateY(1.25rem);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.is-visible,
html:not(.js) .reveal {
  opacity: 1;
  transform: none;
}

@keyframes hero-drift {
  from { transform: scale(1.04) translate3d(0, 0, 0); }
  to { transform: scale(1.1) translate3d(-1.5%, 1%, 0); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal,
  .hero-media img,
  .button,
  .photo-strip img,
  .menu-board img {
    animation: none !important;
    transition: none !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* —— Mobile nav —— */
@media (max-width: 860px) {
  .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: var(--space-4);
    background: rgba(7, 13, 18, 0.97);
    border-bottom: 1px solid rgba(201, 162, 39, 0.25);
  }

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

  .site-nav a {
    padding: var(--space-3) var(--space-2);
    border-bottom: 1px solid rgba(235, 226, 212, 0.08);
  }

  .nav-cta {
    margin-top: var(--space-3);
    justify-content: center;
  }

  .hero-inner {
    max-width: none;
  }
}
