:root {
  --ink: #17120f;
  --charcoal: #241b17;
  --ember: #c86a2c;
  --gold: #e3b15d;
  --cream: #f7f0e6;
  --paper: #fffaf2;
  --sage: #5e7668;
  --muted: #766d64;
  --line: rgba(36, 27, 23, .16);
  --shadow: 0 22px 70px rgba(23, 18, 15, .18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

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

a {
  color: inherit;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 12px clamp(16px, 4vw, 48px);
  background: rgba(255, 250, 242, .9);
  border-bottom: 1px solid rgba(255, 255, 255, .4);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 116px;
}

.brand img {
  width: 126px;
  height: auto;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 2vw, 30px);
  color: #3f342d;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
}

.nav a,
.footer-links a,
.text-link {
  text-decoration: none;
}

.nav a:hover,
.footer-links a:hover,
.text-link:hover {
  color: var(--ember);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.lang-toggle,
.call-pill {
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  min-height: 42px;
  border-radius: 999px;
  padding: 10px 14px;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
}

.call-pill {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fff;
  background: var(--charcoal);
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(18, 12, 8, .9), rgba(18, 12, 8, .52) 48%, rgba(18, 12, 8, .12)),
    linear-gradient(0deg, rgba(18, 12, 8, .8), rgba(18, 12, 8, 0) 48%);
}

.hero-content {
  position: relative;
  width: min(900px, 100%);
  padding: 140px clamp(18px, 6vw, 82px) 90px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 18px;
  font-size: clamp(44px, 8vw, 98px);
  line-height: .94;
  letter-spacing: 0;
  max-width: 760px;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(32px, 5vw, 62px);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 18px;
}

.lead {
  max-width: 710px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, .88);
  font-size: clamp(18px, 2.3vw, 24px);
}

.hero-ctas,
.location-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 999px;
  padding: 13px 18px;
  border: 1px solid transparent;
  font-weight: 900;
  text-decoration: none;
}

.btn.primary {
  background: var(--ember);
  color: #fff;
}

.btn.secondary {
  background: #fff;
  color: var(--ink);
}

.btn.ghost {
  border-color: rgba(255, 255, 255, .55);
  color: #fff;
}

.btn.ghost.dark {
  border-color: var(--line);
  color: var(--ink);
}

.quick-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border-bottom: 1px solid var(--line);
}

.quick-strip div {
  min-height: 126px;
  padding: 26px clamp(16px, 3vw, 36px);
  background: var(--paper);
}

.quick-strip strong,
.quick-strip span {
  display: block;
}

.quick-strip strong {
  font-size: 23px;
  line-height: 1.1;
}

.quick-strip span {
  margin-top: 7px;
  color: var(--muted);
}

.section,
.band {
  padding: clamp(70px, 9vw, 132px) clamp(18px, 6vw, 82px);
}

.split,
.reservation,
.location {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .86fr);
  align-items: center;
  gap: clamp(34px, 7vw, 86px);
}

.section-copy p,
.band-copy p,
.reservation p,
.location p {
  max-width: 690px;
  color: #574b43;
  font-size: 18px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 30px 0 22px;
}

.feature-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
  background: #fff;
}

.feature-grid p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 15px;
}

.text-link {
  color: var(--ember);
  font-weight: 900;
}

.photo-stack {
  position: relative;
  min-height: 560px;
}

.main-photo,
.small-photo {
  position: absolute;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.main-photo {
  inset: 0 10% 10% 0;
  width: 90%;
  height: 90%;
}

.small-photo {
  right: 0;
  bottom: 0;
  width: 48%;
  height: 42%;
  border: 10px solid var(--paper);
}

.band {
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  gap: clamp(34px, 6vw, 80px);
  align-items: center;
  background: var(--charcoal);
  color: #fff;
}

.band-copy p {
  color: rgba(255, 255, 255, .76);
}

.venue-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.venue-gallery img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 8px;
}

.venue-gallery img:first-child {
  grid-row: span 2;
  height: 532px;
}

.contact-panel {
  display: grid;
  gap: 12px;
}

.contact-panel a {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  text-decoration: none;
}

.contact-panel span {
  font-size: 22px;
  font-weight: 900;
}

.contact-panel small {
  color: var(--muted);
  text-align: right;
}

.location {
  align-items: stretch;
  background: var(--cream);
}

.map-card {
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding: 30px;
  border-radius: 8px;
  color: #fff;
  background:
    linear-gradient(0deg, rgba(23, 18, 15, .82), rgba(23, 18, 15, .12)),
    url("assets/images/interior.jpg") center/cover;
  box-shadow: var(--shadow);
}

.map-card p {
  margin-bottom: 0;
  color: #fff;
  font-size: clamp(34px, 5vw, 58px);
  font-weight: 950;
}

.map-card span {
  color: rgba(255, 255, 255, .78);
}

.map-card a {
  align-self: flex-start;
  margin-top: 22px;
  color: #fff;
  font-weight: 900;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  padding: 38px clamp(18px, 6vw, 82px) 92px;
  background: var(--ink);
  color: #fff;
}

.footer p {
  max-width: 680px;
  margin: 8px 0 0;
  color: rgba(255, 255, 255, .68);
}

.footer-links {
  display: flex;
  align-items: start;
  gap: 16px;
  font-weight: 900;
}

.mobile-bar {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 30;
  display: none;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 999px;
  background: rgba(23, 18, 15, .94);
  box-shadow: 0 18px 50px rgba(0, 0, 0, .3);
  backdrop-filter: blur(14px);
}

.mobile-bar a {
  padding: 14px 10px;
  color: #fff;
  text-align: center;
  text-decoration: none;
  font-weight: 900;
}

.mobile-bar a + a {
  border-left: 1px solid rgba(255, 255, 255, .14);
}

@media (max-width: 980px) {
  .site-header {
    position: absolute;
  }

  .nav {
    display: none;
  }

  .quick-strip,
  .split,
  .reservation,
  .location,
  .band {
    grid-template-columns: 1fr;
  }

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

  .photo-stack {
    min-height: 440px;
  }

  .venue-gallery img,
  .venue-gallery img:first-child {
    height: 280px;
  }
}

@media (max-width: 640px) {
  body {
    padding-bottom: 68px;
  }

  .site-header {
    padding: 10px 14px;
  }

  .brand img {
    width: 96px;
  }

  .call-pill {
    display: none;
  }

  .hero {
    min-height: 88vh;
  }

  .hero-overlay {
    background:
      linear-gradient(0deg, rgba(18, 12, 8, .9), rgba(18, 12, 8, .18)),
      linear-gradient(90deg, rgba(18, 12, 8, .72), rgba(18, 12, 8, .22));
  }

  .hero-content {
    padding: 120px 18px 54px;
  }

  .hero-ctas .btn {
    width: 100%;
  }

  .quick-strip {
    grid-template-columns: 1fr;
  }

  .quick-strip div {
    min-height: auto;
    padding: 20px 18px;
  }

  .section,
  .band {
    padding: 58px 18px;
  }

  .feature-grid,
  .venue-gallery {
    grid-template-columns: 1fr;
  }

  .photo-stack {
    min-height: auto;
  }

  .main-photo,
  .small-photo {
    position: static;
    width: 100%;
    height: auto;
  }

  .small-photo {
    margin-top: 12px;
    border: 0;
  }

  .contact-panel a {
    display: block;
  }

  .contact-panel small {
    display: block;
    text-align: left;
  }

  .footer {
    display: block;
    padding-bottom: 104px;
  }

  .footer-links {
    margin-top: 22px;
    flex-wrap: wrap;
  }

  .mobile-bar {
    display: grid;
  }
}
