@font-face {
  font-family: 'Secular One';
  src: url('./fonts/SecularOne-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* Base */
:root {
  --color-bg: #faf8f5;
  --color-card: #f0ebe3;
  --color-card-border: #e0d9ce;
  --color-text: #2c2c2c;
  --color-text-muted: #5a5a5a;
  --color-accent: #8b6914;
  --font-sans: 'Secular One', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --font-serif: 'Cinzel', Georgia, "Times New Roman", serif;
  --header-h: 3.5rem;
  --container-w:  min(90vw, 960px);
  --radius: 6px;
}

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

html {
  scroll-behavior: smooth;
  scrollbar-gutter: stable;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
::-webkit-scrollbar-track {
  background: var(--color-bg);
}
::-webkit-scrollbar-thumb {
  background: #c2aa70;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--color-accent);
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.5;
  color: var(--color-text);
  background: var(--color-bg);
}

.page-loader {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background: radial-gradient(circle at top, #111111 0%, #000000 100%);
  transition: opacity 0.5s ease;
}

.page-loader-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.page-loader-logo {
  max-width: 260px;
  width: 60vw;
  height: auto;
  display: block;
}

.page-loader-bar {
  width: min(260px, 70vw);
  height: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  overflow: hidden;
}

.page-loader-bar-fill {
  width: 40%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.1), #ffffff, rgba(255, 255, 255, 0.1));
  animation: page-loader-bar-move 1.1s linear infinite;
}

@keyframes page-loader-bar-move {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(250%);
  }
}

.page-loader.is-hidden {
  opacity: 0;
  pointer-events: none;
}

a {
  color: var(--color-accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Hero */
.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 8rem 1rem 4rem;
  background: radial-gradient(circle at top, #3a3a3a 0%, #111111 100%);
  color: #fff;
  text-align: center;
  overflow: hidden;
}

.hero-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.95;
}

.hero > *:not(.hero-bg-video) {
  z-index: 1;
}

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1.5rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  z-index: 100;
}

.hero-lang-wrap {
  display: flex;
  pointer-events: none;
}

.hero-lang-wrap .hero-lang {
  pointer-events: auto;
}

.hero-lang {
  direction: ltr;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.25rem;
  width: auto;
  min-width: 9.5rem;
  box-sizing: border-box;
}

.lang-btn {
  width: 2.25rem;
  padding: 0.25rem 0;
  font-size: 0.85rem;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.5);
  background: rgba(255,255,255,0.1);
  color: #fff;
  border-radius: 4px;
  cursor: pointer;
}

.lang-btn:hover,
.lang-btn[aria-pressed="true"] {
  background: rgba(255,255,255,0.25);
  border-color: #fff;
  color: #fff;
}

/* Hero Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-title {
  margin: 0 0 1.25rem;
  font-family: var(--font-serif);
  font-weight: 400;
}

.hero-logo {
  max-width: 90%;
  width: 480px;
  height: auto;
  opacity: 0;
  animation: fadeInUp 1s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
  animation-delay: 0.2s;
  display: block;
  margin: 0 auto;
}

.hero-logo-stage {
  position: relative;
  display: inline-block;
  margin: 0 auto;
}

.hero-brands-row {
  display: flex;
  direction: ltr;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  gap: clamp(0.75rem, 2.5vw, 1.4rem);
  margin: 0 auto 1.25rem;
  width: 100%;
  max-width: 100%;
  padding: 0 1rem;
  box-sizing: border-box;
}

.hero-brand-logo-link {
  display: inline-flex;
  direction: ltr;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform 0.25s ease;
  will-change: transform;
  flex: 0 1 auto;
  min-width: 0;
  --brand-float-duration: 3.4s;
  --brand-float-delay: 0s;
}

.hero-brand-logo {
  height: 100px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  display: block;
  pointer-events: none;
  animation: heroBrandFloat var(--brand-float-duration) ease-in-out var(--brand-float-delay) infinite;
  will-change: transform;
}

.hero-brand-logo-link:nth-child(1) {
  --brand-float-duration: 3.1s;
  --brand-float-delay: -0.25s;
}

.hero-brand-logo-link:nth-child(2) {
  --brand-float-duration: 3.8s;
  --brand-float-delay: -1.05s;
}

.hero-brand-logo-link:nth-child(3) {
  --brand-float-duration: 4.15s;
  --brand-float-delay: -0.6s;
}

.hero-brand-logo-link:nth-child(4) {
  --brand-float-duration: 2.95s;
  --brand-float-delay: -1.4s;
}

@media (max-width: 520px) {
  .hero-brands-row {
    gap: 0.25rem;
    padding: 0 0.35rem;
  }

  .hero-brand-logo {
    height: 85px;
  }
}

@media (max-width: 420px) {
  .hero-brand-logo {
    height: 75px;
  }
}

@media (max-width: 360px) {
  .hero-brand-logo {
    height: 65px;
  }
}

.hero-brand-logo-link:hover {
  transform: translateY(-1px) scale(1.03);
}

@keyframes heroBrandFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-3px);
  }
}

/* Group intro */
.group-intro {
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 2.5rem 1.5rem 1.75rem;
  text-align: center;
  color: var(--color-text);
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.group-intro-inner {
  background: radial-gradient(circle at top, rgba(0, 0, 0, 0.06), rgba(0, 0, 0, 0.0));
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem 1.5rem;
}

.group-intro-title {
  margin: 0 0 1rem;
  font-family: var(--font-serif);
  font-size: 1.6rem;
  letter-spacing: 0.04em;
}

.group-intro-text {
  margin: 0 auto;
  max-width: 60ch;
  font-size: 0.97rem;
  line-height: 1.7;
  color: var(--color-text-muted);
}

.group-intro.is-revealed {
  opacity: 1;
  transform: translateY(0);
}

.hero-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 1.5rem;
  pointer-events: auto;
}

.hero-nav a {
  color: #fff;
  font-weight: 500;
  opacity: 0.9;
  transition: opacity 0.3s ease, text-shadow 0.3s ease;
}

.hero-nav a:hover {
  opacity: 1;
  text-decoration: none;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

/* Venues */
.venues {
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 2rem 1rem 3rem;
}

.venue-card {
  background: var(--color-card);
  border: 1px solid var(--color-card-border);
  border-radius: var(--radius);
  padding: 1.75rem;
  margin-bottom: 2rem;
  min-height: 32rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.4s ease;
}

.venue-card.is-revealed {
  opacity: 1;
  transform: translateY(0);
}

.venue-card.is-revealed:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(139, 105, 20, 0.1);
}

.venue-card:last-child {
  margin-bottom: 0;
}

/* Brand-specific card moods */
.venue-domo {
  background: radial-gradient(circle at top, #f7f1e7 0%, #f0ebe3 40%, #ebe3d6 100%);
}

.venue-asiati {
  background: radial-gradient(circle at top, rgba(214, 64, 40, 0.12), rgba(240, 235, 227, 0.96));
  border-color: #e3b4a0;
}

.venue-smash {
  background: radial-gradient(circle at top, rgba(243, 204, 83, 0.18), #f5efe0);
  border-color: #f1d27a;
}

.venue-arto {
  background: linear-gradient(135deg, #f4f2f0 0%, #e8e5e0 45%, #dedbd6 100%);
  border-color: #c8c5be;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
}

.venue-address {
  margin: 0 0 0.75rem;
  font-size: 0.95rem;
  color: var(--color-text-muted);
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.25rem;
}

.hero-scroll-down {
  margin-top: 6.25rem;
  padding: 0.35rem 0.6rem 0.15rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: transparent;
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s ease, border-color 0.25s ease, background-color 0.25s ease, opacity 0.25s ease;
  opacity: 0.85;
}

.hero-scroll-down:hover,
.hero-scroll-down:focus-visible {
  outline: none;
  transform: translateY(3px);
  border-color: #fff;
  background: rgba(255, 255, 255, 0.08);
  opacity: 1;
}

.hero-scroll-down svg {
  display: block;
  animation: heroArrowBounce 1.6s ease-in-out infinite;
}

@keyframes heroArrowBounce {
  0%,
  100% {
    transform: translateY(-2px);
  }
  50% {
    transform: translateY(4px);
  }
}

/* Join Page */
.join-page {
  position: relative;
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  justify-items: center;
  align-content: start;
  padding: 7.75rem 1rem 4rem;
  background: radial-gradient(circle at top, #3a3a3a 0%, #111111 100%);
  color: #fff;
  text-align: center;
  overflow: hidden;
}

.join-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.95;
}

.join-page > *:not(.join-bg-video) {
  position: relative;
  z-index: 1;
}

.contact-page {
  position: relative;
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  justify-items: center;
  align-content: start;
  padding: 7.75rem 1rem 4rem;
  background: radial-gradient(circle at top, #3a3a3a 0%, #111111 100%);
  color: #fff;
  text-align: center;
  overflow: hidden;
}

.contact-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.95;
}

.contact-page > *:not(.contact-bg-video) {
  position: relative;
  z-index: 1;
}

.contact-intro {
  margin: 0 0 1rem;
  max-width: 62ch;
  font-size: 0.96rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.88);
}

.contact-actions {
  width: min(100%, 620px);
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.6rem;
  margin: 0 0 0.9rem;
}

.contact-btn {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.22rem;
  padding: 0.6rem 0.85rem;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: calc(var(--radius) - 4px);
  background: rgba(0, 0, 0, 0.28);
  color: #fff;
  transition: transform 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}

.contact-head {
  display: inline-flex;
  align-items: center;
  gap: 0.38rem;
}

.contact-icon {
  width: 1.38rem;
  height: 1.38rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.92);
}

.contact-icon svg {
  display: block;
}

.contact-btn:hover,
.contact-btn:focus-visible {
  outline: none;
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(0, 0, 0, 0.42);
}

.contact-label {
  font-size: 0.74rem;
  color: rgba(255, 255, 255, 0.72);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.contact-value {
  font-size: 1rem;
  line-height: 1.35;
  color: #fff;
  word-break: break-word;
}

.contact-hours {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.84);
}

@media (min-width: 760px) {
  .contact-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.join-back-home {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.8rem;
  height: 2.8rem;
  margin: 0 0 1.35rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  text-decoration: none;
  transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
  position: relative;
  z-index: 2;
  animation: joinBackNudgeRight 1.8s ease-in-out infinite;
}

.join-back-home:hover,
.join-back-home:focus-visible {
  outline: none;
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.8);
}

@keyframes joinBackNudgeRight {
  0%,
  100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(4px);
  }
}

.join-title {
  font-family: var(--font-serif);
  font-weight: 400;
  margin: 0 0 1rem;
  font-size: clamp(2.6rem, 6vw, 4rem);
}

.join-text {
  margin: 0;
  max-width: 62ch;
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  white-space: pre-line;
}

.join-photos {
  width: min(100%, 640px);
  margin-top: 1.25rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.7rem;
}

.join-photos img {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  max-height: 165px;
  border-radius: calc(var(--radius) + 2px);
  border: 1px solid var(--color-card-border);
  display: block;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  position: relative;
  z-index: 1;
}

.join-photos img:hover {
  transform: scale(1.03);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
  z-index: 2;
}

/* Keep join gallery framing aligned with venue-card tuning */
.join-photos img:nth-child(2) {
  object-position: center 93%;
}

.join-photos img:nth-child(3) {
  object-position: center 70%;
}

@media (min-width: 720px) {
  .join-photos {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .join-photos img {
    aspect-ratio: 4 / 3;
    max-height: 210px;
  }
}

.venue-address-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.15rem 0.6rem;
  border-radius: 999px;
  border: 1px solid var(--color-card-border);
  background: #fff;
  font-size: 0.85rem;
  color: var(--color-text-muted);
  white-space: nowrap;
}

.venue-logo-wrap {
  display: flex;
  justify-content: center;
  margin: 0 0 0.85rem;
}

.venue-logo {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--color-card-border);
}

.venue-description-wrap {
  margin-bottom: 0.75rem;
  text-align: center;
}

.venue-description-inner {
  position: relative;
  overflow: hidden;
  max-height: var(--venue-description-height, 80rem);
  transition: max-height 0.4s ease-in-out;
  will-change: max-height;
}

.venue-description-inner::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: transparent;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s ease-in-out;
}

.venue-description-wrap.is-collapsed .venue-description-inner {
  max-height: var(--venue-description-collapsed-height, 3.4rem);
}

.venue-description-wrap.is-collapsed .venue-description-inner::after {
  opacity: 0;
}

.venue-description-wrap.is-clamped .venue-description {
  display: -webkit-box;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.venue-description {
  margin: 0 auto 0.75rem;
  font-size: 0.95rem;
  color: var(--color-text);
  max-width: 58ch;
  text-align: center;
  white-space: normal;
  line-height: 1.6;
}

.desc-p {
  display: block;
  margin-bottom: 0.5rem;
}

.desc-p:last-child {
  margin-bottom: 0;
}

.venue-read-more {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  margin: 0.75rem auto 0;
  padding: 0.25rem 0.9rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-accent);
  background: #fff;
  border-radius: 999px;
  border: 1px solid rgba(139, 105, 20, 0.3);
  cursor: pointer;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  position: relative;
}

.venue-read-more::after {
  content: '›';
  margin-inline-start: 0.15rem;
  font-size: 0.9em;
  transform: translateY(1px);
  transition: transform 0.3s ease;
}

.venue-read-more:hover {
  color: var(--color-text);
}

.venue-read-more:hover::after {
  transform: translateY(1px) translateX(1px);
}

.venue-description-wrap:not(.is-collapsed) .venue-read-more::after {
  content: '‹';
}

.venue-read-more[hidden] {
  display: none !important;
}

.venue-contact {
  display: grid;
  /* Keep column order LTR so Instagram stays left and hours stay right in RTL locales */
  direction: ltr;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  margin-bottom: 1.25rem;
  background: #fff;
  border: 1px solid var(--color-card-border);
  border-radius: var(--radius);
}

/* DOMO / ASI / Smash: Instagram | true-center CTA | hours (same physical layout in LTR/RTL) */
.venue-contact--with-cta {
  grid-template-columns: 1fr auto 1fr;
}

.venue-contact--with-cta .venue-contact-leading {
  display: contents;
}

.venue-contact--with-cta .venue-contact-social {
  grid-column: 1;
  grid-row: 1;
  justify-self: start;
}

/* Span full row so the button is centered on the whole bar, not only the middle track */
.venue-contact--with-cta .venue-contact-cta {
  grid-column: 1 / -1;
  grid-row: 1;
  justify-self: center;
  width: max-content;
  max-width: 100%;
  pointer-events: none;
}

.venue-contact--with-cta .venue-contact-cta .venue-book-btn,
.venue-contact--with-cta .venue-contact-cta a {
  pointer-events: auto;
}

.venue-contact--with-cta .venue-contact-info {
  grid-column: 3;
  grid-row: 1;
  justify-self: end;
  text-align: end;
}

/* Hebrew/RTL: hours block reads RTL and aligns to the physical right of the bar */
[dir='rtl'] .venue-contact .venue-contact-info {
  direction: rtl;
  text-align: start;
}

/* Arto: Instagram | hours */
.venue-contact:not(.venue-contact--with-cta) .venue-contact-social {
  justify-self: start;
}

.venue-contact:not(.venue-contact--with-cta) .venue-contact-info {
  justify-self: end;
  text-align: end;
}

.venue-contact-leading {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.75rem;
}

.venue-contact-social {
  display: flex;
  align-items: center;
}

.venue-contact-cta {
  display: flex;
  align-items: center;
  justify-content: center;
}

.venue-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--color-card);
  color: var(--color-text);
  font-size: 1.1rem;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.venue-icon:hover {
  background: var(--color-accent);
  color: #fff;
  text-decoration: none;
  transform: translateY(-1px) scale(1.03);
}

.venue-icon-instagram {
  background: linear-gradient(135deg, #f9ce34 0%, #ee2a7b 52%, #6228d7 100%);
  color: #fff;
}

.venue-icon-instagram:hover {
  background: linear-gradient(135deg, #f7c52f 0%, #e61f73 52%, #5520c8 100%);
  color: #fff;
}

.venue-book-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 0.9rem;
  border-radius: 999px;
  border: 1px solid transparent;
  background: linear-gradient(135deg, #f4d27a 0%, #d9ae43 52%, #b8871f 100%);
  color: #fff;
  font-size: 0.86rem;
  font-weight: 600;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.28);
  text-decoration: none;
  box-shadow: 0 6px 14px rgba(184, 135, 31, 0.3);
  transition: transform 0.2s ease, filter 0.2s ease, box-shadow 0.2s ease;
}

.venue-book-btn:hover {
  filter: brightness(1.04) saturate(1.08);
  color: #fff;
  text-decoration: none;
  transform: translateY(-1px) scale(1.02);
  box-shadow: 0 8px 18px rgba(139, 105, 20, 0.38);
}

.venue-contact-info {
  min-width: 0;
}

.venue-hours {
  margin: 0 0 0.25rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-text);
  white-space: pre-line;
}

.venue-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}

.venue-gallery img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: calc(var(--radius) + 2px);
  border: 1px solid var(--color-card-border);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  position: relative;
  z-index: 1;
}

.venue-gallery img:hover {
  transform: scale(1.03);
  box-shadow: 0 10px 20px rgba(0,0,0,0.15);
  z-index: 2;
}

/* Brand-specific photo tone */
.venue-domo .venue-gallery img {
  filter: saturate(1.03) contrast(1.05) sepia(0.08);
}

.venue-domo .venue-gallery img:nth-child(3) {
  object-position: center 60%;
}

.venue-asiati .venue-gallery img {
  filter: saturate(1.1) hue-rotate(-8deg);
}

.venue-asiati .venue-gallery img:nth-child(1),
.venue-asiati .venue-gallery img:nth-child(2) {
  object-position: center 93%;
}

.venue-domo .venue-gallery img:nth-child(2),
.venue-smash .venue-gallery img:nth-child(2),
.venue-arto .venue-gallery img:nth-child(2) {
  object-position: center 50%;
}

.venue-smash .venue-gallery img {
  filter: saturate(1.15) hue-rotate(18deg);
}

.venue-smash .venue-gallery img:nth-child(1) {
  object-position: center 70%;
}

.venue-arto .venue-gallery img {
  filter: saturate(0.9) contrast(1.05);
}

/* Footer */
.footer {
  padding: 1.5rem 1rem;
  background: #111;
  border-top: none;
}

.footer-credit {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  max-width: var(--container-w);
  margin: 0 auto;
  font-size: 0.95rem;
  color: #fff;
}

.hellsec-link {
  color: #d4af37;
  font-weight: 600;
  transition: color 0.3s ease, text-shadow 0.3s ease;
  text-decoration: none;
}

.hellsec-link:hover {
  text-decoration: underline;
  color: #f5d565;
  text-shadow: 0 0 8px rgba(212, 175, 55, 0.4);
}

/* Responsive */
@media (max-width: 768px) {
  .hero-nav {
    justify-content: center;
    gap: 0.75rem 1rem;
  }

  .venue-card {
    padding: 1.4rem 1.25rem 1.5rem;
  }

  .venue-contact,
  .venue-contact--with-cta {
    grid-template-columns: 1fr;
    align-items: stretch;
  }

  /* Row 1: Instagram left, CTA geometric center; row 2: hours (fix grid-row:1 leak from desktop) */
  .venue-contact--with-cta .venue-contact-leading {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 0.75rem;
    grid-column: 1;
    grid-row: auto;
    width: 100%;
  }

  .venue-contact--with-cta .venue-contact-social {
    grid-column: 1;
    grid-row: 1;
    justify-self: start;
    width: auto;
    max-width: none;
    pointer-events: auto;
  }

  .venue-contact--with-cta .venue-contact-cta {
    grid-column: 2;
    grid-row: 1;
    justify-self: center;
    width: max-content;
    max-width: 100%;
    pointer-events: auto;
  }

  .venue-contact--with-cta .venue-contact-info {
    grid-column: 1;
    grid-row: auto;
    justify-self: stretch;
    text-align: start;
  }

  .venue-contact:not(.venue-contact--with-cta) .venue-contact-social {
    grid-column: 1;
  }

  .venue-contact:not(.venue-contact--with-cta) .venue-contact-info {
    grid-column: 1;
    justify-self: stretch;
    text-align: start;
  }

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

  .venue-gallery img {
    height: 180px;
  }

  .venue-asiati .venue-gallery img:nth-child(1),
  .venue-asiati .venue-gallery img:nth-child(2) {
    object-position: center 93%;
  }

  .venue-domo .venue-gallery img:nth-child(3) {
    object-position: center 60%;
  }

  .venue-smash .venue-gallery img:nth-child(1) {
    object-position: center 70%;
  }
}

@media (max-width: 480px) {
  .venue-card {
    padding: 1.15rem 1.15rem 1.35rem;
  }
}

/* Back to Top */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 3.5rem;
  height: 3.5rem;
  background: var(--color-accent);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  z-index: 99;
  transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.back-to-top:hover {
  background: #a37c1a;
  color: #fff;
  text-decoration: none;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
}

/* Respect user preference: less motion */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .page-loader-bar-fill {
    animation: none;
  }

  .hero-logo {
    animation: none;
    opacity: 1;
    transform: none;
  }

  .hero-brand-logo {
    animation: none;
  }

  .hero-brand-logo-link {
    transition: none;
  }

  .hero-scroll-down svg {
    animation: none;
  }

  .join-back-home {
    animation: none;
  }

  .group-intro,
  .venue-card {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .venue-card.is-revealed:hover {
    transform: none;
  }

  .venue-description-inner {
    transition: none;
  }

  .venue-read-more,
  .venue-icon,
  .venue-book-btn,
  .venue-gallery img,
  .join-photos img,
  .back-to-top {
    transition: none;
  }

  .back-to-top:hover {
    transform: none;
  }
}
