@import url('https://fonts.googleapis.com/css2?family=Assistant:wght@400;600;700;800&family=Cinzel:wght@400;600;700&family=Frank+Ruhl+Libre:wght@400;500;700;900&family=Heebo:wght@400;500;700;800&display=swap');

:root {
  --gold: #cda15a;
  --gold-light: #e7c889;
  --gold-pale: #f4e3bf;
  --bronze: #9a6d3d;
  --brown: #5b3b23;
  --brown-deep: #2c1b12;
  --ink: #23160f;
  --cream: #f6ecdc;
  --cream-soft: #fbf5ea;
  --mist: #efe1cd;
  --white: #ffffff;
  --text: #2a1b12;
  --muted: #7a5a3c;
  --line: rgba(154, 109, 61, 0.22);
  --shadow: 0 18px 44px rgba(77, 45, 19, 0.14);
  --radius: 16px;
  --max: 1180px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Heebo', 'Assistant', sans-serif;
  background:
    radial-gradient(circle at top, rgba(231,200,137,0.28), transparent 26%),
    radial-gradient(circle at bottom left, rgba(154,109,61,0.18), transparent 24%),
    linear-gradient(180deg, #fbf6ed 0%, #f5ebdb 42%, #efe0ca 100%);
  color: var(--text);
  line-height: 1.65;
}

a {
  color: inherit;
  transition: color 0.2s ease, opacity 0.2s ease;
}

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

iframe { z-index: 1; }

.shell {
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(12px);
  background: rgba(248, 239, 225, 0.88);
  border-bottom: 1px solid rgba(154,109,61,0.14);
}

.nav {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  min-height: 56px;
}

.brand-logo {
  width: auto;
  height: 56px;
  max-width: 220px;
  object-fit: contain;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.25rem;
  align-items: center;
  margin: 0;
  padding: 0;
}

.nav-links a {
  text-decoration: none;
  color: rgba(44,27,18,0.82);
  font-size: 0.92rem;
  font-weight: 600;
}

.nav-links a.active,
.nav-links a:hover {
  color: var(--bronze);
}

.nav-cta {
  background: linear-gradient(135deg, #ba8846, #e6c684 55%, #c79658);
  color: #23160f !important;
  padding: 0.74rem 1.08rem;
  border-radius: 999px;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(186,136,70,0.22);
}

.nav-cta:hover {
  filter: brightness(1.04);
}

.menu-toggle {
  display: none;
  background: transparent;
  border: 0;
  padding: 0.35rem;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--bronze);
  margin: 5px 0;
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 52% 35%, rgba(255,244,220,0.95), rgba(249,235,207,0.68) 24%, rgba(205,161,90,0.22) 42%, transparent 62%),
    radial-gradient(circle at 16% 84%, rgba(154,109,61,0.18), transparent 24%),
    radial-gradient(circle at 86% 12%, rgba(205,161,90,0.16), transparent 22%),
    linear-gradient(180deg, #f6ead8 0%, #edd9bf 100%);
  min-height: calc(100vh - 74px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 40%, rgba(205,161,90,0.16) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 80% 70%, rgba(154,109,61,0.10) 0%, transparent 60%);
}

.hero-stars {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.star {
  position: absolute;
  width: 2px;
  height: 2px;
  background: rgba(181, 126, 57, 0.42);
  border-radius: 50%;
  animation: twinkle 3s infinite alternate;
}

@keyframes twinkle {
  from { opacity: 0.15; }
  to { opacity: 0.9; }
}

.hero-ring {
  position: absolute;
  border: 1px solid rgba(154,109,61,0.11);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.ring-one {
  width: 430px;
  height: 430px;
}

.ring-two {
  width: 620px;
  height: 620px;
  border-color: rgba(154,109,61,0.08);
}

.ring-three {
  width: 820px;
  height: 820px;
  border-color: rgba(205,161,90,0.10);
}

.hero-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
  padding: 1.2rem 0 1.2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  animation: fadeUp 1.2s ease forwards;
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.kicker {
  color: var(--bronze);
  font-family: 'Cinzel', serif;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 1.05rem;
  margin: 0 0 0.7rem;
}

.hero-hebrew {
  font-family: 'Frank Ruhl Libre', serif;
  direction: rtl;
  font-size: clamp(3.4rem, 10vw, 7rem);
  font-weight: 900;
  color: #b88746;
  margin: 0.3rem 0;
  text-shadow: 0 2px 12px rgba(231,200,137,0.3);
  letter-spacing: -0.02em;
}

.hero-logo-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 0 0.2rem;
  transform: translateY(100px);
}

.hero-logo {
  max-width: 470px;
  width: 100%;
  height: auto;
  display: block;
}

.hero-subtitle {
  font-family: 'Assistant', 'Heebo', sans-serif;
  color: rgba(68,39,20,0.78);
  font-size: clamp(0.92rem, 1.45vw, 1.08rem);
  font-weight: 500;
  margin: 0.12rem 0;
  line-height: 1.42;
  transform: translateY(25px);
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 0.8rem;
  transform: translateY(25px);
}

.hero-warning {
  margin-top: 14px;
  text-align: center;
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  background: rgba(180, 0, 0, 0.9);
  display: inline-block;
  padding: 10px 18px;
  border-radius: 12px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.18);
  transform: translateY(25px);
}

.btn {
  border: 0;
  text-decoration: none;
  cursor: pointer;
  border-radius: 999px;
  padding: 0.95rem 1.3rem;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: transform 0.2s ease, filter 0.2s ease, box-shadow 0.2s ease;
}

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

.btn-primary {
  background: linear-gradient(135deg, #ba8846, #e6c684 55%, #c79658);
  color: #23160f;
  box-shadow: 0 10px 24px rgba(186,136,70,0.2);
}

.btn-secondary {
  background: rgba(255,255,255,0.5);
  color: var(--brown-deep);
  border: 1px solid rgba(154,109,61,0.18);
}

.section {
  padding: 4.5rem 0;
  background: transparent;
}

.section.white {
  background: rgba(255,255,255,0.4);
}

.section.dark {
  background:
    radial-gradient(circle at center, rgba(231,200,137,0.16), transparent 28%),
    linear-gradient(180deg, #6b3d22, #3a2115);
  color: #f8ead2;
}

.section.dark .section-heading h2 {
  color: #fff1d6;
}

.section.dark .section-heading .eyebrow {
  color: #f0cf96;
}

.section.dark .lead,
.section.dark p,
.section.dark li,
.section.dark a {
  color: rgba(255, 239, 210, 0.9);
}

.section-heading {
  text-align: center;
  margin-bottom: 2rem;
}

.section-heading .eyebrow {
  color: var(--bronze);
  font-family: 'Cinzel', serif;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-size: 0.72rem;
}

.section-heading h2 {
  margin: 0.4rem 0 0;
  font-family: 'Frank Ruhl Libre', serif;
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1.1;
  color: var(--brown-deep);
}

.lead {
  max-width: 800px;
  margin: 0 auto;
  color: var(--muted);
  text-align: center;
}

.cards,
.info-grid,
.gallery-grid,
.legal-grid {
  display: grid;
  gap: 1.2rem;
}

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

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

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

.legal-grid {
  grid-template-columns: 1.1fr 0.9fr;
  align-items: start;
}

.card,
.info-card,
.form-card,
.embed-card,
.media-card,
.legal-card {
  background: linear-gradient(180deg, rgba(255,250,243,0.94), rgba(245,232,213,0.94));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  color: var(--text);
}

.card,
.info-card,
.legal-card {
  padding: 1.3rem;
}

.card h3,
.info-card h3,
.legal-card h3 {
  margin: 0 0 0.5rem;
  color: var(--brown-deep);
  font-family: 'Frank Ruhl Libre', serif;
}

.card p,
.info-card p,
.legal-card p,
.info-card a,
.card a,
.legal-card a {
  color: var(--muted);
}

.dark .card {
  background: rgba(255,244,221,0.06);
  color: #fff4dd;
}

.dark .card p {
  color: rgba(255,244,221,0.75);
}

.info-card {
  text-align: center;
}

.media-card {
  overflow: hidden;
}

.media-card img,
.media-card video {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  background: #000;
}

.media-body {
  display: none;
}

.page-hero {
  background:
    radial-gradient(circle at 50% 20%, rgba(255,245,224,0.9), rgba(232,200,137,0.2) 30%, transparent 60%),
    linear-gradient(180deg, #f4e7d4, #ebd6b9);
  color: var(--brown-deep);
  padding: 4.5rem 0 3rem;
  text-align: center;
}

.page-hero .shell {
  max-width: 900px;
  margin: 0 auto;
}

.page-hero .title,
.title {
  font-family: 'Frank Ruhl Libre', serif;
  font-size: clamp(2.4rem, 6vw, 4.3rem);
  margin: 0.3rem 0;
  color: var(--brown-deep);
  font-weight: 800;
  line-height: 1.15;
}

.page-hero .subtitle,
.subtitle {
  color: rgba(68,39,20,0.78);
  max-width: 760px;
  margin: 0 auto;
  font-size: 20px;
  line-height: 1.8;
}

.embed-card {
  padding: 1rem;
}

.ticket-frame {
  width: 100%;
  height: 760px;
  border: 0;
  border-radius: 12px;
  background: #f8efe0;
  display: block;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 1.5rem;
}

.contact-detail {
  padding: 1rem 0;
  border-bottom: 1px solid rgba(154,109,61,0.14);
}

.contact-detail strong {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--brown-deep);
}

.form-card {
  padding: 1.35rem;
}

.form-row {
  margin-bottom: 1rem;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
  color: var(--brown-deep);
}

.required-star {
  color: #c25540;
  margin-left: 0.2rem;
}

input,
select,
textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  font: inherit;
  border-radius: 12px;
  border: 1px solid rgba(154,109,61,0.22);
  background: rgba(255,255,255,0.78);
  color: var(--text);
}

input::placeholder,
textarea::placeholder {
  color: rgba(68,39,20,0.42);
}

textarea {
  min-height: 150px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(205,161,90,0.14);
  border-color: var(--gold);
}

.field-error {
  display: none;
  color: #c25540;
  font-size: 0.85rem;
  margin-top: 0.3rem;
}

.form-note,
.small {
  font-size: 0.88rem;
  color: var(--muted);
}

.notice {
  padding: 1rem 1.1rem;
  border-radius: 12px;
  background: rgba(255,249,239,0.8);
  border: 1px solid rgba(154,109,61,0.22);
  color: var(--brown);
}

.site-footer {
  background: linear-gradient(180deg, #f0dfc6, #e6cfaa);
  color: var(--brown-deep);
  padding: 3rem 0;
  margin-top: 3rem;
  border-top: 1px solid rgba(154,109,61,0.14);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.7fr 0.7fr 1fr;
  gap: 1.25rem;
}

.footer-grid h3 {
  color: var(--brown-deep);
  font-size: 0.95rem;
}

.footer-grid ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-grid li {
  margin-bottom: 0.55rem;
}

.footer-grid a {
  color: rgba(44,27,18,0.84);
  text-decoration: none;
}

.footer-grid a:hover {
  color: var(--bronze);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 1rem;
}

.footer-logo-img {
  width: auto;
  height: 58px;
  max-width: 220px;
  border-radius: 0;
  object-fit: contain;
}

.footer-logo {
  font-family: 'Frank Ruhl Libre', serif;
  font-size: 2rem;
  color: var(--brown-deep);
}

.footer-tagline {
  font-family: 'Cinzel', serif;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.68rem;
  color: rgba(68,39,20,0.58);
}

.footer-copy {
  color: rgba(68,39,20,0.58);
}

.cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 999999;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  background: rgba(251,245,234,0.96);
  color: var(--brown-deep);
  border: 1px solid rgba(154,109,61,0.2);
  border-radius: 18px;
  padding: 1rem 1.1rem;
  box-shadow: 0 24px 50px rgba(77,45,19,0.16);
  pointer-events: auto;
}

.cookie-banner[hidden] {
  display: none !important;
}

.cookie-banner p {
  margin: 0.2rem 0 0;
  color: rgba(68,39,20,0.72);
}

.cookie-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  pointer-events: auto;
  position: relative;
  z-index: 1000000;
}

.cookie-banner .btn,
.cookie-banner button {
  pointer-events: auto;
  position: relative;
  z-index: 1000000;
}

.legal-card {
  position: sticky;
  top: 94px;
}

.legal-content h2,
.legal-content h3 {
  scroll-margin-top: 90px;
  color: var(--brown-deep);
}

.legal-content h2 {
  font-size: 1.6rem;
  font-family: 'Frank Ruhl Libre', serif;
}

.legal-content h3 {
  font-size: 1.15rem;
  margin-top: 1.6rem;
  font-family: 'Frank Ruhl Libre', serif;
}

.legal-content p,
.legal-content li {
  color: var(--muted);
}

.legal-content ul {
  padding-left: 1.2rem;
}

.legal-disclaimer {
  font-size: 0.9rem;
  color: var(--brown);
  padding: 1rem;
  background: rgba(255,249,239,0.8);
  border-radius: 12px;
  border: 1px solid rgba(154,109,61,0.2);
}

.error-hero {
  text-align: center;
  padding: 5rem 0;
}

.error-code {
  font-family: 'Cinzel', serif;
  font-size: clamp(4rem, 16vw, 9rem);
  color: var(--gold);
  line-height: 1;
}

.title-secondary {
  margin: 10px 0 0;
  font-size: 28px;
  line-height: 1.4;
  font-weight: 600;
  color: var(--brown-deep);
  font-family: 'Frank Ruhl Libre', serif;
}

.vibe-section {
  background: transparent;
  padding: 48px 0 32px;
}

.vibe-box {
  max-width: 900px;
  margin: 0 auto;
  background: linear-gradient(180deg, rgba(255,250,243,0.94), rgba(245,232,213,0.94));
  border: 1px solid rgba(154,109,61,0.16);
  border-radius: 24px;
  box-shadow: 0 18px 40px rgba(77,45,19,0.12);
  padding: 18px;
}

.vibe-box-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  color: var(--text);
  line-height: 2;
  padding: 28px 22px;
}

.vibe-eyebrow {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--bronze);
  margin-bottom: 10px;
}

.vibe-title {
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  margin: 0 0 22px;
  color: var(--brown-deep);
  font-family: 'Frank Ruhl Libre', serif;
}

.vibe-box p {
  margin: 0 0 18px;
  font-size: 1.08rem;
}

.vibe-quote {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--bronze);
}

.vibe-closing {
  margin-bottom: 0;
  font-weight: 600;
}

.seating-plan {
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255,255,255,0.12);
}

.seating-plan-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.seating-plan-head h3 {
  margin: 0;
}

.seating-plan-preview {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
}

.seating-plan-preview img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.18);
}

.seating-plan-open {
  white-space: nowrap;
}

.image-modal[hidden] {
  display: none;
}

.image-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
}

.image-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.78);
}

.image-modal-dialog {
  position: relative;
  z-index: 1;
  width: min(95vw, 1200px);
  max-height: 92vh;
  margin: 4vh auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.image-modal-dialog img {
  max-width: 100%;
  max-height: 92vh;
  width: auto;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 16px 50px rgba(0,0,0,0.35);
  background: #fff;
}

.image-modal-close {
  position: absolute;
  top: -14px;
  right: -14px;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 999px;
  background: #fff;
  color: #111;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
}

body.modal-open {
  overflow: hidden;
}

@media (max-width: 960px) {
  .cards,
  .info-grid,
  .footer-grid,
  .contact-layout,
  .legal-grid,
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .title {
    font-size: 30px;
  }

  .subtitle {
    font-size: 18px;
  }

  .title-secondary {
    font-size: 22px;
  }
}

@media (max-width: 760px) {
  .menu-toggle {
    display: inline-block;
  }

  .nav-links {
    position: absolute;
    left: 1rem;
    right: 1rem;
    top: calc(100% + 0.6rem);
    background: rgba(248,239,225,0.98);
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    border-radius: 18px;
    border: 1px solid rgba(154,109,61,0.18);
    display: none;
  }

  .nav-links.open {
    display: flex;
  }

  .cards,
  .info-grid,
  .footer-grid,
  .contact-layout,
  .form-grid,
  .legal-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .cookie-banner {
    flex-direction: column;
    align-items: stretch;
  }

  .ticket-frame {
    height: 900px;
  }

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

  .hero-inner {
    padding: 1rem 0;
  }

  .hero-logo {
    max-width: 300px;
  }

  .kicker {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
  }

  .hero-logo-wrap {
    margin-bottom: 0.8rem;
  }

  .ring-one {
    width: 300px;
    height: 300px;
  }

  .ring-two {
    width: 440px;
    height: 440px;
  }

  .ring-three {
    width: 580px;
    height: 580px;
  }

  .hero-warning {
    font-size: 0.95rem;
    padding: 10px 14px;
  }
}

@media (max-width: 640px) {
  .vibe-box {
    border-radius: 18px;
    padding: 10px;
  }

  .vibe-box-inner {
    padding: 20px 14px;
    line-height: 1.85;
  }

  .vibe-box p {
    font-size: 1rem;
  }

  .image-modal-dialog {
    width: 94vw;
    margin: 6vh auto;
  }

  .image-modal-close {
    top: -10px;
    right: -6px;
  }
}