:root {
  color-scheme: dark;
  --graphite: #272727;
  --graphite-deep: #151515;
  --graphite-soft: #343230;
  --sand: #c8b7a8;
  --sand-light: #efe4d6;
  --stone: #9d948c;
  --copper: #9d6845;
  --line: rgba(200, 183, 168, 0.22);
  --shadow: rgba(0, 0, 0, 0.48);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

section {
  scroll-margin-top: 82px;
}

body {
  margin: 0;
  background: var(--graphite);
  color: var(--sand-light);
  font-family:
    Inter, Manrope, "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont,
    sans-serif;
  line-height: 1.5;
}

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

a:focus {
  outline: none;
}

a:focus-visible {
  outline: 2px solid rgba(200, 183, 168, 0.7);
  outline-offset: 4px;
}

.brand:focus-visible {
  outline-offset: 8px;
}

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: minmax(132px, 1fr) auto minmax(132px, 1fr);
  align-items: center;
  gap: 18px;
  padding: 18px clamp(18px, 4vw, 56px);
  color: var(--sand-light);
  background: linear-gradient(rgba(21, 21, 21, 0.86), rgba(21, 21, 21, 0));
}

.brand,
.nav-links,
.header-action,
.hero-actions,
.hero-socials,
.site-footer {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-size: 1.1rem;
  font-weight: 900;
  letter-spacing: 0;
}

.nav-links {
  justify-content: center;
  gap: clamp(14px, 2.5vw, 30px);
  color: rgba(239, 228, 214, 0.82);
  font-size: 0.93rem;
}

.nav-links a,
.site-footer a {
  transition: color 180ms ease;
}

.nav-links a:hover,
.site-footer a:hover {
  color: var(--sand);
}

.header-action {
  justify-self: end;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid rgba(200, 183, 168, 0.45);
  border-radius: 6px;
  background: rgba(21, 21, 21, 0.38);
  backdrop-filter: blur(12px);
  font-size: 0.9rem;
  font-weight: 800;
}

.hero {
  position: relative;
  display: grid;
  min-height: 92svh;
  overflow: hidden;
  isolation: isolate;
  padding: 120px clamp(20px, 6vw, 84px) 34px;
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-image {
  z-index: -3;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 46%;
}

.hero-shade {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(12, 12, 12, 0.96) 0%, rgba(21, 21, 21, 0.76) 39%, rgba(21, 21, 21, 0.16) 76%),
    linear-gradient(0deg, rgba(21, 21, 21, 0.95) 0%, rgba(21, 21, 21, 0.08) 58%);
}

.hero-content {
  align-self: center;
  width: min(780px, 100%);
}

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

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2 {
  margin: 0;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.92;
  text-transform: uppercase;
}

h1 {
  color: var(--sand);
  font-size: 8.6rem;
}

h2 {
  font-size: 4rem;
}

h3 {
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.25;
}

.hero-copy {
  max-width: 620px;
  margin: 24px 0 0;
  color: rgba(239, 228, 214, 0.88);
  font-size: 1.26rem;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.hero-socials {
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.hero-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 86px;
  min-height: 38px;
  padding: 0 16px;
  border: 1px solid rgba(200, 183, 168, 0.34);
  border-radius: 6px;
  background: rgba(21, 21, 21, 0.34);
  color: rgba(239, 228, 214, 0.86);
  font-size: 0.84rem;
  font-weight: 900;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.hero-socials a:hover {
  transform: translateY(-2px);
  border-color: var(--sand);
  background: rgba(21, 21, 21, 0.52);
}

.primary-button,
.ghost-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 6px;
  font-weight: 900;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.primary-button {
  border: 1px solid var(--sand);
  background: var(--sand);
  color: var(--graphite-deep);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.28);
}

.ghost-button {
  border: 1px solid rgba(200, 183, 168, 0.45);
  background: rgba(21, 21, 21, 0.34);
}

.primary-button:hover,
.ghost-button:hover {
  transform: translateY(-2px);
}

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

.section,
.section-band,
.booking-section {
  padding: clamp(58px, 9vw, 118px) clamp(20px, 6vw, 84px);
}

.intro {
  display: grid;
  grid-template-columns: minmax(300px, 0.95fr) minmax(320px, 1.05fr);
  gap: clamp(26px, 5vw, 76px);
  align-items: center;
  border-top: 1px solid var(--line);
  background: var(--graphite);
}

.intro-copy {
  display: grid;
  grid-template-columns: minmax(220px, 0.86fr) minmax(180px, 0.58fr);
  gap: 18px;
  align-items: stretch;
}

.intro-copy p {
  margin: 0;
  color: rgba(239, 228, 214, 0.76);
  font-size: 1.18rem;
}

.intro-notes {
  display: grid;
  align-content: end;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.intro-notes li {
  padding: 11px 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(200, 183, 168, 0.055);
  color: var(--sand-light);
  font-size: 0.88rem;
  font-weight: 900;
}

.intro-copy img {
  grid-column: 1 / -1;
  width: 100%;
  height: 100%;
  max-height: 360px;
  min-height: 260px;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.section-heading {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: end;
  margin-bottom: 34px;
}

.space-section {
  background: var(--graphite-deep);
}

.space-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 14px;
}

.space-grid figure {
  position: relative;
  min-height: 340px;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #202020;
}

.space-grid .space-feature {
  grid-row: span 2;
  min-height: 694px;
}

.space-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.space-grid figcaption {
  position: absolute;
  left: 16px;
  bottom: 16px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(21, 21, 21, 0.64);
  color: var(--sand-light);
  font-size: 0.85rem;
  font-weight: 900;
  backdrop-filter: blur(10px);
}

.menu-section {
  background: var(--graphite);
}

.food-showcase {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: clamp(30px, 5vw, 56px);
}

.food-showcase img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  height: clamp(220px, 18vw, 290px);
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.26);
}

.cocktail-list p,
.event-card p,
.booking-copy p {
  margin: 10px 0 0;
  color: var(--stone);
}

.section-action {
  display: flex;
  justify-content: center;
  margin-top: 34px;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(300px, 1fr);
  gap: clamp(34px, 7vw, 98px);
  align-items: start;
  background: var(--sand);
  color: var(--graphite-deep);
}

.split-section .eyebrow,
.events-section .eyebrow {
  color: var(--graphite-soft);
}

.bar-copy p:last-child {
  max-width: 560px;
  color: rgba(21, 21, 21, 0.72);
  font-size: 1.08rem;
}

.bar-panel {
  display: grid;
  grid-template-columns: minmax(180px, 0.78fr) minmax(240px, 1fr);
  gap: 14px;
  align-items: stretch;
}

.bar-panel > img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  border: 1px solid rgba(21, 21, 21, 0.16);
  border-radius: 8px;
}

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

.cocktail-list article {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 10px 16px;
  padding: 22px;
  border: 1px solid rgba(21, 21, 21, 0.16);
  border-radius: 8px;
  background: rgba(21, 21, 21, 0.06);
}

.cocktail-list span {
  grid-row: span 2;
  color: var(--copper);
  font-weight: 900;
}

.banquet-section {
  display: grid;
  grid-template-columns: minmax(320px, 1.05fr) minmax(300px, 0.95fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  background: var(--graphite-deep);
}

.banquet-media {
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  gap: 14px;
  align-items: stretch;
}

.banquet-media img {
  width: 100%;
  min-height: 520px;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.banquet-media img:last-child {
  min-height: 360px;
  align-self: end;
}

.banquet-copy p:not(.eyebrow) {
  max-width: 580px;
  margin: 22px 0 28px;
  color: rgba(239, 228, 214, 0.76);
  font-size: 1.12rem;
}

.events-section {
  background: #201f1e;
}

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

.event-card {
  min-height: 230px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(200, 183, 168, 0.055);
  box-shadow: 0 18px 42px var(--shadow);
}

.event-card time {
  display: inline-block;
  margin-bottom: 42px;
  color: var(--sand);
  font-weight: 900;
}

.booking-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(320px, 0.9fr);
  gap: clamp(30px, 7vw, 90px);
  background:
    linear-gradient(135deg, rgba(200, 183, 168, 0.12), rgba(157, 104, 69, 0.08)),
    var(--graphite-deep);
}

.booking-form {
  display: grid;
  gap: 16px;
  padding: clamp(20px, 4vw, 34px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(200, 183, 168, 0.06);
}

.booking-form label {
  display: grid;
  gap: 8px;
  color: rgba(239, 228, 214, 0.78);
  font-size: 0.92rem;
  font-weight: 900;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 0.55fr;
  gap: 12px;
}

.form-row-three {
  grid-template-columns: 1fr 0.78fr 0.62fr;
}

input,
select {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(200, 183, 168, 0.28);
  border-radius: 6px;
  background: rgba(21, 21, 21, 0.64);
  color: var(--sand-light);
  font: inherit;
  padding: 0 14px;
}

input:focus,
select:focus {
  outline: 2px solid rgba(200, 183, 168, 0.66);
  outline-offset: 2px;
}

.checkbox-line {
  display: grid;
  grid-template-columns: 18px 1fr;
  align-items: start;
  gap: 10px;
  color: rgba(239, 228, 214, 0.7);
  font-size: 0.86rem;
  font-weight: 700;
}

.checkbox-line input {
  min-height: 18px;
  margin: 2px 0 0;
  accent-color: var(--sand);
}

.form-button {
  width: 100%;
  margin-top: 4px;
  cursor: pointer;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--sand);
  font-weight: 900;
}

.contacts-section {
  display: grid;
  grid-template-columns: minmax(360px, 0.92fr) minmax(520px, 1.08fr);
  align-items: stretch;
  gap: clamp(24px, 4vw, 52px);
  background: var(--graphite);
  border-top: 1px solid var(--line);
}

.contacts-intro {
  display: grid;
  align-content: start;
  gap: clamp(18px, 2.4vw, 28px);
}

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

.contacts-grid article {
  display: grid;
  align-content: space-between;
  min-height: 124px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(200, 183, 168, 0.055);
}

.contacts-grid .contact-socials {
  grid-column: 1 / -1;
  min-height: 116px;
}

.contact-map {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(200, 183, 168, 0.055);
  overflow: hidden;
}

.contact-map iframe {
  display: block;
  width: 100%;
  height: clamp(300px, 28vw, 420px);
  border: 0;
  filter: grayscale(0.2) contrast(1.02);
}

.contact-map > .map-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  box-sizing: border-box;
  min-height: 48px;
  border-top: 1px solid var(--line);
  background: rgba(21, 21, 21, 0.34);
  color: var(--sand-light);
  font-size: 1rem;
  font-weight: 800;
  text-decoration: none;
  transition:
    background 180ms ease,
    color 180ms ease;
}

.contact-map > .map-link:hover {
  background: rgba(200, 183, 168, 0.12);
  color: var(--sand);
}

.contacts-grid span {
  display: block;
  margin-bottom: 14px;
  color: var(--sand);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.contacts-grid p,
.contacts-grid a {
  margin: 0;
  color: var(--sand-light);
  font-size: 1rem;
  font-weight: 800;
}

.contacts-grid .contact-socials .contact-buttons {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  width: 100%;
}

.contacts-grid .contact-socials .contact-buttons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  min-height: 42px;
  padding: 0 12px;
  border: 1px solid rgba(200, 183, 168, 0.34);
  border-radius: 6px;
  background: rgba(21, 21, 21, 0.28);
  color: var(--sand-light);
  font-size: 0.92rem;
  text-decoration: none;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.contacts-grid .contact-socials .contact-buttons a:hover {
  transform: translateY(-2px);
  border-color: var(--sand);
  background: rgba(21, 21, 21, 0.44);
}

.site-footer {
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px 28px;
  padding: 28px clamp(20px, 6vw, 84px);
  border-top: 1px solid var(--line);
  background: #111;
  color: rgba(239, 228, 214, 0.76);
}

.site-footer span:first-child {
  color: var(--sand);
  font-size: 1.2rem;
  font-weight: 900;
}

@media (max-width: 1080px) {
  h1 {
    font-size: 6.8rem;
  }

  h2 {
    font-size: 3.2rem;
  }
}

@media (max-width: 860px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav-links {
    display: none;
  }

  .hero {
    min-height: 90svh;
    padding-top: 104px;
  }

  h1 {
    font-size: 5.6rem;
  }

  h2 {
    font-size: 2.55rem;
  }

  .intro,
  .split-section,
  .banquet-section,
  .booking-section,
  .contacts-section {
    grid-template-columns: 1fr;
  }

  .intro-copy,
  .bar-panel {
    grid-template-columns: 1fr;
  }

  .food-showcase {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .banquet-media img {
    min-height: 420px;
  }

  .space-grid {
    grid-template-columns: 1fr 1fr;
  }

  .space-grid .space-feature {
    grid-column: 1 / -1;
    min-height: 520px;
  }

  .events-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .site-header {
    padding: 14px 16px;
  }

  .header-action {
    min-height: 38px;
    padding: 0 12px;
    font-size: 0.82rem;
  }

  .hero {
    min-height: 88svh;
    padding: 94px 18px 26px;
  }

  h1 {
    font-size: 4.15rem;
  }

  h2 {
    font-size: 2.1rem;
  }

  .hero-copy {
    max-width: 360px;
    font-size: 1.06rem;
  }

  .primary-button,
  .ghost-button {
    width: 100%;
  }

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

  .hero-socials a {
    width: 100%;
  }

  .food-showcase {
    grid-template-columns: 1fr;
  }

  .food-showcase img {
    height: auto;
  }

  .bar-panel > img {
    min-height: 340px;
  }

  .section,
  .section-band,
  .booking-section {
    padding-left: 18px;
    padding-right: 18px;
  }

  .section-heading {
    display: block;
  }

  .banquet-media {
    grid-template-columns: 1fr;
  }

  .banquet-media img,
  .banquet-media img:last-child {
    min-height: 360px;
  }

  .space-grid {
    grid-template-columns: 1fr;
  }

  .space-grid figure,
  .space-grid .space-feature {
    min-height: 390px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contacts-grid {
    grid-template-columns: 1fr;
  }

  .contact-map iframe {
    height: 320px;
  }
}
