@font-face {
  font-family: "Posterama";
  src: url("public/fonts/Posterama-2001-W04-Bold.ttf") format("truetype");
  font-display: swap;
}

@font-face {
  font-family: "Rawson";
  src: url("public/fonts/RawsonAltRegular.otf") format("opentype");
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Rawson";
  src: url("public/fonts/RawsonAltMedium.otf") format("opentype");
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Rawson";
  src: url("public/fonts/RawsonAltSemiBold.otf") format("opentype");
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Rawson";
  src: url("public/fonts/RawsonAltBold.otf") format("opentype");
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "Geishta";
  src: url("public/fonts/Geishta.ttf") format("truetype");
  font-display: swap;
}

:root {
  --font-display: "Posterama", Georgia, serif;
  --font-body: "Rawson", Arial, sans-serif;
  --font-accent: "Geishta", "Brush Script MT", cursive;
  --bg: #090909;
  --bg-soft: #0d0d0c;
  --panel: #11100e;
  --panel-deep: #151412;
  --olive: #171811;
  --ivory: #f4ead8;
  --champagne: #d8c7ad;
  --muted: #a4947f;
  --dim: #746758;
  --accent: #c17f61;
  --line: rgba(244, 234, 216, 0.18);
  --line-soft: rgba(244, 234, 216, 0.11);
  --max: 1180px;
  --gutter: 72px;
  --header: 78px;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--bg);
  scroll-behavior: smooth;
}

[id] {
  scroll-margin-top: 104px;
}

body {
  position: relative;
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background-color: var(--bg);
  color: var(--ivory);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  background-image: url("public/images/dark-texture.jpg");
  background-position: center top;
  background-size: cover;
  opacity: 0.16;
  pointer-events: none;
  content: "";
}

body::after {
  position: fixed;
  top: 0;
  bottom: 0;
  left: var(--gutter);
  z-index: -1;
  width: 1px;
  background: var(--line-soft);
  pointer-events: none;
  content: "";
}

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

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

p,
a,
h1,
h2,
h3,
h4,
span,
dd {
  overflow-wrap: break-word;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button:focus-visible,
a:focus-visible {
  outline: 1px solid var(--accent);
  outline-offset: 5px;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  min-height: var(--header);
  padding: 18px var(--gutter);
  border-bottom: 1px solid var(--line-soft);
  background: rgba(9, 9, 9, 0.66);
  transition: background 260ms ease, min-height 260ms ease, border-color 260ms ease;
}

.site-header.is-scrolled {
  min-height: 66px;
  border-color: var(--line);
  background: rgba(9, 9, 9, 0.96);
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
}

.brand-logo {
  display: block;
  height: 52px;
  width: 52px;
}

.brand-logo--footer {
  height: 72px;
  width: 72px;
}

.main-nav {
  position: fixed;
  top: 22px;
  left: 50%;
  z-index: 60;
  display: flex;
  align-items: center;
  gap: 6px;
  border: 1px solid rgba(244, 234, 216, 0.18);
  border-radius: 999px;
  padding: 4px;
  background: rgba(244, 234, 216, 0.06);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.34);
  color: rgba(244, 234, 216, 0.72);
  font-size: 0.74rem;
  font-weight: 600;
  text-transform: uppercase;
  transform: translateX(-50%);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.main-nav a {
  position: relative;
  z-index: 1;
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 9px 22px;
  overflow: visible;
  transition: color 220ms ease, background 220ms ease;
}

.main-nav a::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  background: rgba(244, 234, 216, 0.08);
  opacity: 0;
  transition: opacity 240ms ease;
  content: "";
}

.main-nav a::after {
  position: absolute;
  top: -7px;
  left: 50%;
  width: 34px;
  height: 3px;
  border-radius: 999px 999px 0 0;
  background: var(--accent);
  box-shadow:
    0 0 12px rgba(193, 127, 97, 0.7),
    0 0 24px rgba(193, 127, 97, 0.32);
  opacity: 0;
  transform: translateX(-50%);
  transition: opacity 240ms ease;
  content: "";
}

.main-nav a:hover,
.main-nav a.is-active {
  color: var(--ivory);
}

.main-nav a:hover::before,
.main-nav a.is-active::before,
.main-nav a.is-active::after {
  opacity: 1;
}

.nav-icon {
  display: none;
}

.nav-icon svg {
  display: block;
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.4;
}

.header-cta,
.btn {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  padding: 12px 18px;
  color: var(--ivory);
  font-size: 0.74rem;
  font-weight: 600;
  text-transform: uppercase;
  transition: background 220ms ease, border-color 220ms ease, color 220ms ease, transform 220ms ease;
}

.header-cta {
  justify-self: end;
}

.header-cta:hover,
.btn-outline:hover {
  border-color: rgba(244, 234, 216, 0.44);
  background: rgba(244, 234, 216, 0.07);
  color: var(--ivory);
}

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

.btn-primary {
  background: var(--ivory);
  color: #0a0806;
}

.btn-primary:hover {
  border-color: var(--ivory);
  background: rgba(244, 234, 216, 0.86);
  color: #0a0806;
}

.btn-outline {
  background: rgba(9, 9, 9, 0.18);
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: 92svh;
  display: grid;
  align-items: center;
  padding: calc(var(--header) + 48px) var(--gutter) 90px;
  overflow: hidden;
  background: var(--bg);
}

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

.hero-slideshow {
  z-index: -3;
  overflow: hidden;
}

.hero-slide {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 48%;
  opacity: 0;
  filter: saturate(0.72) contrast(1.08) brightness(0.38);
  transform: scale(1.02);
  animation: heroFade 24s infinite;
}

.hero-slide:nth-child(1) {
  opacity: 1;
}

.hero-slide:nth-child(2) {
  animation-delay: 6s;
}

.hero-slide:nth-child(3) {
  animation-delay: 12s;
}

.hero-slide:nth-child(4) {
  animation-delay: 18s;
}

@keyframes heroFade {
  0%,
  22% {
    opacity: 1;
  }

  28%,
  94% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-slide {
    animation: none;
  }

  .hero-slide:not(:first-child) {
    opacity: 0;
  }
}

.hero-shade {
  z-index: -2;
  background: rgba(9, 9, 9, 0.45);
}

.hero-frame {
  position: absolute;
  inset: 108px var(--gutter) 72px;
  z-index: -1;
  border: 1px solid rgba(244, 234, 216, 0.18);
  pointer-events: none;
}

.hero-frame::before,
.hero-frame::after {
  position: absolute;
  width: 62px;
  height: 1px;
  background: rgba(244, 234, 216, 0.4);
  content: "";
}

.hero-frame::before {
  top: 24px;
  left: -31px;
}

.hero-frame::after {
  right: -31px;
  bottom: 24px;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(720px, 100%);
  justify-self: center;
  margin-inline: auto;
  padding-left: 0;
  text-align: center;
}

.accent-script {
  margin-bottom: 18px;
  color: var(--accent);
  font-family: var(--font-accent);
  font-size: 1.45rem;
  line-height: 1;
  text-transform: uppercase;
}

.hero h1 {
  margin-bottom: 24px;
  color: var(--ivory);
  font-family: var(--font-display);
  font-size: 5.6rem;
  font-weight: 700;
  line-height: 0.88;
  text-transform: uppercase;
}

.hero .hero-logo-heading {
  margin: 0 0 34px;
  font-size: 0;
  line-height: 1;
}

.hero-logo {
  width: clamp(190px, 24vw, 340px);
  margin-inline: auto;
  filter: drop-shadow(0 24px 48px rgba(0, 0, 0, 0.5));
}

.hero-hours-label {
  margin-bottom: 6px;
  color: var(--ivory);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: none;
}

.hero-hours-days {
  margin: 0 0 8px;
  color: var(--ivory);
  font-size: clamp(0.82rem, 1.4vw, 1.06rem);
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.2;
  text-transform: uppercase;
}

.hero-hours {
  margin: 0;
  color: var(--accent);
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 3.9rem);
  font-weight: 700;
  line-height: 0.98;
  text-transform: uppercase;
  text-wrap: balance;
}

.reservation-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-meta {
  position: absolute;
  right: var(--gutter);
  bottom: 28px;
  left: var(--gutter);
  display: flex;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid var(--line-soft);
  padding-top: 18px;
  color: rgba(244, 234, 216, 0.58);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
}

.statement {
  padding: 66px var(--gutter) 38px;
  background: var(--bg);
}

.statement-inner {
  width: min(900px, 100%);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 26px;
  align-items: center;
}

.statement p {
  width: min(640px, 100%);
  margin: 0;
  color: var(--champagne);
  font-family: var(--font-display);
  font-size: 2.2rem;
  line-height: 1.05;
  text-align: center;
}

.rule {
  display: block;
  height: 1px;
  background: var(--line);
}

.section {
  padding: 136px var(--gutter);
}

.section-heading,
.about-layout,
.events-grid,
.mojito-promo-inner,
.menu-intro,
.menu-composition,
.contact-layout,
.map-panel,
.site-footer,
.reservation-inner {
  width: min(var(--max), 100%);
  margin-inline: auto;
}

.section-label {
  margin-bottom: 18px;
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
}

h2 {
  margin-bottom: 28px;
  color: var(--ivory);
  font-family: var(--font-display);
  font-size: 4.1rem;
  font-weight: 700;
  line-height: 0.95;
  text-transform: uppercase;
  text-wrap: balance;
}

h3 {
  color: var(--ivory);
}

.about {
  position: relative;
  overflow: hidden;
  background: rgba(13, 13, 12, 0.78);
}

.statement {
  position: relative;
  overflow: hidden;
}

.events-section {
  position: relative;
  padding-top: 116px;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 18%, rgba(193, 127, 97, 0.14), transparent 34%),
    linear-gradient(180deg, var(--bg), var(--panel-deep));
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(260px, 0.42fr);
  gap: 64px;
  align-items: end;
  margin-bottom: 44px;
}

.section-heading .section-label {
  grid-column: 1 / -1;
  margin-bottom: -32px;
}

.section-heading h2 {
  margin-bottom: 0;
}

.section-heading p:not(.section-label) {
  margin-bottom: 6px;
  color: rgba(244, 234, 216, 0.64);
  font-size: 1.02rem;
}

.events-heading a {
  display: inline-block;
  margin-top: 8px;
  color: var(--accent);
  font-weight: 700;
  overflow-wrap: anywhere;
  transition: color 220ms ease;
}

.events-heading a:hover {
  color: var(--ivory);
}

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

.event-card {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 22px;
  min-height: 220px;
  border: 1px solid rgba(244, 234, 216, 0.14);
  border-radius: 8px;
  padding: 24px;
  overflow: hidden;
  background: rgba(17, 16, 14, 0.86);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.22);
}

.event-card::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(193, 127, 97, 0.16), transparent 44%);
  opacity: 0.86;
  pointer-events: none;
  content: "";
}

.event-date,
.event-body {
  position: relative;
  z-index: 1;
}

.event-date {
  display: grid;
  align-content: start;
  min-width: 86px;
  border-right: 1px solid rgba(244, 234, 216, 0.15);
  padding-right: 18px;
}

.event-day,
.event-time {
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
}

.event-date strong {
  color: var(--ivory);
  font-family: var(--font-display);
  font-size: 2.3rem;
  line-height: 0.95;
}

.event-body {
  align-self: end;
}

.event-time {
  margin-bottom: 12px;
}

.event-card h3 {
  margin-bottom: 10px;
  font-family: var(--font-display);
  font-size: 1.7rem;
  line-height: 1;
  text-transform: uppercase;
}

.event-card p {
  margin: 0;
  color: rgba(244, 234, 216, 0.68);
  line-height: 1.45;
}

.mojito-promo-section {
  position: relative;
  overflow: hidden;
  background: var(--bg);
}

.mojito-promo-section::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(9, 9, 9, 0.94), rgba(9, 9, 9, 0.6)),
    url("public/images/dark-texture.jpg") center / cover;
  opacity: 0.72;
  pointer-events: none;
  content: "";
}

.mojito-promo-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 0.46fr);
  gap: 72px;
  align-items: center;
}

.mojito-promo-copy {
  max-width: 640px;
}

.mojito-promo-copy h2 {
  margin-bottom: 22px;
}

.mojito-promo-copy p:not(.section-label) {
  margin: 0;
  color: rgba(244, 234, 216, 0.68);
  font-size: 1.08rem;
}

.mojito-promo-poster {
  justify-self: end;
  width: min(520px, 100%);
  margin: 0;
}

.mojito-promo-poster img {
  width: 100%;
  height: auto;
  border: 1px solid rgba(244, 234, 216, 0.14);
  border-radius: 8px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.42);
}

.about-layout {
  display: block;
}

.about-copy {
  max-width: 820px;
  margin-inline: auto;
}

.about-copy p:not(.section-label) {
  color: rgba(244, 234, 216, 0.74);
  font-size: 1.06rem;
  line-height: 1.82;
}

.about-copy h2 {
  max-width: 760px;
  margin-bottom: 34px;
  color: var(--ivory);
  font-size: clamp(3rem, 7vw, 6.4rem);
}

.story-highlight {
  color: var(--accent);
  font-weight: 700;
}

.menu-section {
  position: relative;
  overflow: hidden;
  background: var(--bg);
}

.menu-section::before {
  position: absolute;
  top: 0;
  right: var(--gutter);
  width: 1px;
  height: 100%;
  background: var(--line-soft);
  content: "";
}

.menu-intro {
  margin-bottom: 24px;
}

.menu-intro h2 {
  max-width: none;
  margin-bottom: 0;
  color: var(--accent);
  font-family: var(--font-accent);
  font-size: clamp(2.4rem, 6vw, 5.8rem);
  font-weight: 400;
  line-height: 0.9;
  text-transform: uppercase;
}

.menu-composition {
  display: block;
}

.menu-book {
  position: relative;
  isolation: isolate;
  border: 1px solid var(--line);
  padding: 38px 42px 42px;
  overflow: hidden;
  background: var(--panel);
}

.menu-book::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(21, 20, 18, 0.98), rgba(11, 11, 10, 0.98));
  content: "";
}

.menu-book::after {
  position: absolute;
  top: 22px;
  right: 22px;
  bottom: 22px;
  left: 22px;
  z-index: -1;
  border: 1px solid rgba(244, 234, 216, 0.08);
  pointer-events: none;
  content: "";
}

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

.menu-group {
  min-width: 0;
}

.menu-group.featured {
  margin-bottom: 44px;
}

.menu-group h3 {
  margin-bottom: 14px;
  color: var(--ivory);
  font-family: var(--font-display);
  font-size: 1.8rem;
  line-height: 1;
  text-transform: uppercase;
}

.menu-group h3::after {
  display: block;
  width: 64px;
  height: 1px;
  margin-top: 14px;
  background: rgba(244, 234, 216, 0.28);
  content: "";
}

.menu-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  padding: 15px 0;
  border-bottom: 1px solid rgba(244, 234, 216, 0.11);
}

.menu-item h4 {
  margin-bottom: 5px;
  color: var(--ivory);
  font-family: var(--font-body);
  font-size: 1.02rem;
  font-weight: 600;
}

.menu-item p {
  margin: 0;
  color: rgba(244, 234, 216, 0.68);
  font-size: 0.92rem;
  line-height: 1.45;
}

.menu-item span {
  color: #d59a7c;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
}

.menu-subheading {
  margin: 18px 0 4px;
  color: var(--accent);
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ── INSTAGRAM ── */
.instagram-section {
  padding: 96px 0 80px;
  background: var(--panel-deep);
  overflow: hidden;
}

.instagram-header {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 40px;
  flex-wrap: wrap;
  width: min(var(--max), 100%);
  margin-inline: auto;
  padding-inline: var(--gutter);
  margin-bottom: 52px;
}

.instagram-header-text {
  max-width: 760px;
}

.instagram-header-text h2 {
  margin-bottom: 14px;
}

.instagram-header-text p:not(.section-label) {
  margin: 0;
  color: rgba(244, 234, 216, 0.66);
}

.reels-track {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  width: min(var(--max), 100%);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.reel-wrap {
  position: relative;
  display: block;
  aspect-ratio: 9 / 16;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(244, 234, 216, 0.12);
  border-radius: 18px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.015)),
    rgba(13, 12, 10, 0.72);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
  cursor: pointer;
  transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.reel-wrap::after {
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(193, 127, 97, 0.22);
  border-radius: 12px;
  opacity: 0.72;
  pointer-events: none;
  transition: border-color 220ms ease, opacity 220ms ease;
  content: "";
}

.reel-wrap:hover {
  border-color: rgba(193, 127, 97, 0.48);
  box-shadow:
    0 28px 80px rgba(0, 0, 0, 0.42),
    0 0 34px rgba(193, 127, 97, 0.12);
  transform: translateY(-3px);
}

.reel-wrap:hover::after {
  border-color: rgba(193, 127, 97, 0.42);
  opacity: 1;
}

.reel-video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #090909;
}

/* ── DECORATIVE CIRCLES (brand identity) ── */
.bb-circles {
  position: absolute;
  width: 300px;
  height: 300px;
  pointer-events: none;
  z-index: 0;
  opacity: 0.22;
}

.bb-circles svg {
  display: block;
  width: 100%;
  height: 100%;
}

.bb-circles--tl { top: 0; left: 0; }
.bb-circles--tr { top: 0; right: 0; }
.bb-circles--bl { bottom: 0; left: 0; }
.bb-circles--br { bottom: 0; right: 0; }

/* ── RESERVATION: extra paragraph ── */
.reservation-text {
  grid-column: 1;
  margin: 0;
  color: rgba(244, 234, 216, 0.72);
  font-size: 1.05rem;
}

.reservation {
  position: relative;
  isolation: isolate;
  padding: 136px var(--gutter);
  background: var(--bg);
  overflow: hidden;
}

.reservation::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: url("public/images/barbar/cocktail-on-bar.jpg") center 48% / cover no-repeat;
  filter: saturate(0.7) brightness(0.32);
  content: "";
}

.reservation::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(9, 9, 9, 0.62);
  content: "";
}

.reservation-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) auto;
  gap: 28px 54px;
  align-items: end;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line-soft);
  padding: 58px 0;
}

.reservation .accent-script {
  grid-column: 1 / -1;
  margin-bottom: -28px;
}

.reservation h2 {
  max-width: 780px;
  margin: 0;
  font-size: 2.9rem;
}

.contact-section {
  padding-bottom: 92px;
  background: var(--bg-soft);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(340px, 0.5fr);
  gap: 82px;
  align-items: start;
  margin-bottom: 64px;
}

.contact-copy h2 {
  margin-bottom: 26px;
  font-size: 4.9rem;
}

.contact-copy address {
  color: rgba(244, 234, 216, 0.72);
  font-size: 1.2rem;
  font-style: normal;
}

.contact-details dl {
  margin: 0;
  border-top: 1px solid var(--line);
}

.contact-details div {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 24px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line-soft);
}

.contact-details dt {
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
}

.contact-details dd {
  margin: 0;
  color: rgba(244, 234, 216, 0.72);
}

.contact-details a {
  transition: color 220ms ease;
}

.contact-details a:hover {
  color: var(--accent);
}

.map-panel {
  display: grid;
  grid-template-columns: minmax(220px, 0.32fr) minmax(0, 1fr);
  min-height: 520px;
  border: 1px solid var(--line-soft);
  background: var(--panel);
}

.map-caption {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 34px;
  border-right: 1px solid var(--line-soft);
}

.map-caption span {
  color: var(--ivory);
  font-family: var(--font-display);
  font-size: 2.3rem;
  text-transform: uppercase;
}

.map-caption p {
  margin: 0;
  color: rgba(244, 234, 216, 0.64);
}

.map-panel iframe {
  width: 100%;
  min-height: 520px;
  border: 0;
  filter: grayscale(1) invert(0.88) contrast(0.9) brightness(0.58) sepia(0.16);
}

.site-footer {
  display: grid;
  grid-template-columns: auto minmax(0, 0.8fr) minmax(0, 1fr);
  gap: 18px 28px;
  align-items: center;
  padding: 34px var(--gutter) 42px;
  border-top: 1px solid var(--line-soft);
  background: var(--bg);
  color: rgba(244, 234, 216, 0.52);
  font-size: 0.82rem;
}

.footer-legal {
  grid-column: 1 / -1;
  justify-self: center;
  padding-top: 8px;
  color: rgba(244, 234, 216, 0.44);
  text-align: center;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 20px;
}

.site-footer a {
  transition: color 220ms ease;
}

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

.site-footer p {
  margin: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 900ms ease, transform 900ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
    animation-duration: 1ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1180px) {
  :root {
    --gutter: 48px;
  }

  .hero h1 {
    font-size: 4.8rem;
  }

  h2 {
    font-size: 3.5rem;
  }

  .section-heading {
    gap: 42px;
  }

  .about-layout,
  .contact-layout {
    gap: 52px;
  }

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

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

  .mojito-promo-inner {
    gap: 52px;
  }

  .site-footer {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .site-footer nav {
    grid-column: 1 / -1;
    justify-content: flex-start;
  }

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

@media (max-width: 940px) {
  :root {
    --header: 68px;
    --gutter: 28px;
  }

  body::after {
    display: none;
  }

  .site-header {
    grid-template-columns: auto 1fr auto;
    padding-block: 12px;
  }

  body {
    padding-bottom: 86px;
  }

  .main-nav {
    position: fixed;
    top: auto;
    right: auto;
    bottom: 18px;
    left: 50%;
    width: min(calc(100vw - 32px), 360px);
    justify-content: space-between;
    gap: 4px;
    padding: 5px;
    transform: translateX(-50%);
  }

  .main-nav a {
    flex: 1;
    min-height: 44px;
    padding: 10px 0;
    font-size: 0.8rem;
  }

  .main-nav a::after {
    top: -7px;
  }

  .nav-label {
    display: none;
  }

  .nav-icon {
    display: inline-flex;
  }

  .header-cta {
    display: none;
  }

  .hero {
    min-height: 88svh;
    padding-bottom: 84px;
  }

  .hero-frame {
    inset: 92px var(--gutter) 82px;
  }

  .hero-content {
    margin-left: 0;
    padding-left: 0;
  }

  .hero h1 {
    font-size: 3.7rem;
  }

  .hero-logo {
    width: clamp(180px, 34vw, 280px);
  }

  .hero-meta {
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .statement-inner {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .statement p {
    font-size: 1.72rem;
  }

  .events-section {
    padding-top: 72px;
  }

  .section {
    padding-block: 72px;
  }

  h2,
  .contact-copy h2 {
    font-size: 2.85rem;
  }

  .section-heading,
  .mojito-promo-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .section-heading {
    margin-bottom: 32px;
  }

  .section-heading .section-label {
    margin-bottom: 0;
  }

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

  .event-card {
    min-height: 0;
  }

  .mojito-promo-poster {
    justify-self: start;
    width: min(460px, 100%);
  }

  .menu-intro {
    margin-bottom: 22px;
  }

  .about-layout {
    max-width: 100%;
  }

  .menu-intro,
  .reservation-inner,
  .contact-layout,
  .map-panel {
    grid-template-columns: 1fr;
  }

  .menu-book.reveal {
    opacity: 1;
    transform: none;
  }

  .reservation h2 {
    font-size: 2.38rem;
  }

  .map-caption {
    border-right: 0;
    border-bottom: 1px solid var(--line-soft);
    gap: 28px;
  }

  .instagram-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }

  .reels-track {
    grid-template-columns: 1fr;
  }

  .site-footer {
    grid-template-columns: 1fr;
    justify-items: start;
    gap: 18px;
  }

  .site-footer nav {
    justify-content: start;
  }

  .footer-legal {
    justify-self: start;
    text-align: left;
  }
}

@media (max-width: 620px) {
  :root {
    --gutter: 20px;
  }

  .brand-logo {
    height: 44px;
    width: 44px;
  }

  .hero {
    min-height: 84svh;
    padding-top: 108px;
    padding-bottom: 88px;
  }

  .hero-frame {
    inset: 86px 14px 78px;
  }

  .hero-content {
    padding-left: 0;
  }

  .accent-script {
    font-size: 1.25rem;
  }

  .hero h1 {
    font-size: 2.65rem;
  }

  .hero-logo {
    width: min(218px, 58vw);
  }

  .hero-hours {
    font-size: 1.72rem;
  }

  .hero-meta {
    right: 20px;
    left: 20px;
    font-size: 0.68rem;
  }

  .statement {
    padding: 46px var(--gutter) 30px;
  }

  .statement p {
    font-size: 1.46rem;
  }

  h2,
  .contact-copy h2 {
    font-size: 2.06rem;
  }

  .section {
    padding-block: 58px;
  }

  .events-section {
    padding-top: 58px;
  }

  .about-copy p:not(.section-label) {
    font-size: 1rem;
    line-height: 1.72;
  }

  .section-heading {
    margin-bottom: 24px;
  }

  .section-heading p:not(.section-label),
  .mojito-promo-copy p:not(.section-label) {
    font-size: 1rem;
  }

  .instagram-section {
    padding: 64px 0 58px;
  }

  .instagram-header {
    margin-bottom: 30px;
  }

  .reels-track {
    gap: 18px;
  }

  .event-card {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 20px 18px;
  }

  .event-date {
    display: flex;
    min-width: 0;
    align-items: baseline;
    gap: 12px;
    border-right: 0;
    border-bottom: 1px solid rgba(244, 234, 216, 0.15);
    padding-right: 0;
    padding-bottom: 12px;
  }

  .event-date strong {
    font-size: 1.86rem;
  }

  .event-card h3 {
    font-size: 1.42rem;
  }

  .mojito-promo-poster {
    width: 100%;
  }

  .menu-intro {
    margin-bottom: 18px;
  }

  .menu-book {
    padding: 34px 28px 32px;
  }

  .menu-book::after {
    top: 16px;
    right: 16px;
    bottom: 16px;
    left: 16px;
  }

  .menu-group h3 {
    font-size: 1.48rem;
  }

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

  .menu-item span {
    justify-self: start;
  }

  .bb-circles {
    width: 180px;
    height: 180px;
  }

  .reservation {
    padding-block: 72px;
  }

  .reservation h2 {
    font-size: 1.8rem;
  }

  .reservation-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .btn {
    width: 100%;
    min-height: 38px;
    padding: 10px 16px;
  }

  .contact-details div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .map-panel,
  .map-panel iframe {
    min-height: 430px;
  }

  .site-footer {
    padding-bottom: 120px;
  }
}
