/* ================================================================
   GRAND CASINO JELGAVA — MAIN STYLESHEET
   ================================================================ */




:root {
  --red-900: #3d0000;
  --red-800: #6b0000;
  --red-700: #8b0000;
  --red-600: #a80000;
  --red-500: #cc0000;
  --red-400: #e00000;
  --red-300: #ff2020;
  --red-glow-sm: rgba(204,0,0,0.18);
  --red-glow-md: rgba(204,0,0,0.35);
  --red-glow-lg: rgba(204,0,0,0.55);

  --bg-void:   #07070b;
  --bg-dark:   #0d0d13;
  --bg-card:   #111119;
  --bg-raised: #18181f;
  --bg-hover:  #202030;

  --text-primary:   #ede8e0;
  --text-secondary: #a09488;
  --text-muted:     #7f7b76; /* was #58544f — contrast ratio ~2.6:1 (fail); now ~4.8:1 (pass AA) */

  --border-faint:  rgba(255,255,255,0.04);
  --border-subtle: rgba(255,255,255,0.08);
  --border-medium: rgba(255,255,255,0.14);
  --border-red:    rgba(204,0,0,0.30);
  --border-red-md: rgba(204,0,0,0.55);

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', system-ui, -apple-system, sans-serif;

  --nav-h: 72px;
  --max-w: 1220px;
  --pad-x: clamp(1.25rem, 4vw, 2.5rem);
  --pad-section: clamp(4rem, 8vw, 8rem);

  --shadow-card: 0 4px 32px rgba(0,0,0,0.55);
  --shadow-red:  0 2px 16px rgba(204,0,0,0.45);
  --shadow-red-h:0 4px 32px rgba(204,0,0,0.65);

  --tr: 0.25s cubic-bezier(0.4,0,0.2,1);
  --tr-slow: 0.5s cubic-bezier(0.4,0,0.2,1);
}


*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--bg-void);
  color: var(--text-primary);
  font-family: var(--font-body);
  line-height: 1.65;
  overflow-x: hidden;
  min-height: 100vh;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font-family: inherit; }


::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-dark); }
::-webkit-scrollbar-thumb { background: var(--red-700); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--red-500); }


h1,h2,h3,h4,h5,h6 { font-family: var(--font-display); font-weight: 700; line-height: 1.2; color: var(--text-primary); }
h1 { font-size: clamp(2.5rem, 6vw, 5rem); }
h2 { font-size: clamp(1.9rem, 4vw, 3rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.25rem; }
p { color: var(--text-secondary); max-width: 68ch; }


.container { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--pad-x); }
.section { padding: var(--pad-section) 0; }
.section--dark { background: var(--bg-dark); }
.section--card { background: var(--bg-card); }
.section--red  { background: var(--red-700); }


.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .8rem 2rem; border-radius: 2px;
  font-family: var(--font-body); font-size: .875rem; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase;
  transition: var(--tr); cursor: pointer; white-space: nowrap;
}
.btn-primary {
  background: var(--red-500); color: #fff;
  box-shadow: var(--shadow-red);
}
.btn-primary:hover {
  background: var(--red-400);
  box-shadow: var(--shadow-red-h);
  transform: translateY(-1px);
}
.btn-outline {
  background: transparent; color: var(--text-primary);
  border: 1px solid var(--border-medium);
}
.btn-outline:hover {
  border-color: var(--red-500); color: var(--red-300);
  box-shadow: 0 0 0 1px var(--border-red);
}
.btn-ghost {
  background: transparent; color: var(--red-300);
  padding-left: 0; padding-right: 0;
}
.btn-ghost::after { content: ' →'; }
.btn-ghost:hover { color: var(--red-400); letter-spacing: .12em; }
.btn-group { display: flex; gap: 1rem; flex-wrap: wrap; }


.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--nav-h);
  transition: background var(--tr), box-shadow var(--tr);
}
.nav.scrolled {
  background: rgba(7,7,11,0.92);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--border-subtle), 0 4px 32px rgba(0,0,0,0.6);
}
.nav-container {
  display: flex; align-items: center; justify-content: space-between;
  height: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 var(--pad-x);
}
.nav-logo { display: flex; flex-direction: column; line-height: 1.1; }
.nav-logo-main {
  font-family: var(--font-display); font-size: 1.5rem; font-weight: 900;
  letter-spacing: .15em; color: #fff;
}
.nav-logo-main span { color: var(--red-500); }
.nav-logo-sub {
  font-size: .6rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--text-muted); font-weight: 400;
}
.nav-links {
  display: flex; align-items: center; gap: 2rem;
}
.nav-link {
  font-size: .8rem; font-weight: 500; letter-spacing: .1em;
  text-transform: uppercase; color: var(--text-secondary);
  position: relative; padding-bottom: 2px; transition: color var(--tr);
}
.nav-link::after {
  content: ''; position: absolute; left: 0; bottom: -2px;
  width: 0; height: 1px; background: var(--red-500);
  transition: width var(--tr);
}
.nav-link:hover, .nav-link.active { color: var(--text-primary); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }
.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  width: 28px; padding: 4px;
}
.nav-toggle span {
  display: block; height: 1.5px; background: var(--text-primary);
  transition: var(--tr); transform-origin: center;
}
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(4.5px, 4.5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(4.5px,-4.5px); }


.nav-mobile {
  position: fixed; top: 0; right: -100%; width: 100%; max-width: 340px; height: 100vh;
  background: var(--bg-dark); border-left: 1px solid var(--border-subtle);
  z-index: 999; transition: right var(--tr-slow); display: flex; flex-direction: column;
  padding: calc(var(--nav-h) + 2rem) 2.5rem 2rem;
}
.nav-mobile.open { right: 0; }
.nav-mobile .nav-link {
  font-size: 1.2rem; display: block; padding: 1rem 0;
  border-bottom: 1px solid var(--border-faint);
}
.nav-mobile .nav-link::after { display: none; }
.nav-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0); z-index: 998;
  pointer-events: none; transition: background var(--tr-slow);
}
.nav-overlay.open { background: rgba(0,0,0,0.7); pointer-events: all; }


.ticker {
  background: var(--red-700); overflow: hidden; height: 34px;
  display: flex; align-items: center;
  margin-top: var(--nav-h); contain: layout paint;
}
.ticker-inner {
  display: flex; gap: 0; white-space: nowrap;
  animation: ticker 30s linear infinite; will-change: transform;
}
.ticker-text {
  font-size: .7rem; font-weight: 600; letter-spacing: .2em;
  text-transform: uppercase; color: rgba(255,255,255,0.85);
  padding-right: 4rem;
}
.ticker-sep { color: rgba(255,255,255,0.4); margin: 0 .5rem; }
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}


.section-header { margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section-header.center { text-align: center; }
.section-header.center p { margin: 0 auto; }
.eyebrow {
  display: inline-flex; align-items: center; gap: .75rem;
  font-size: .7rem; font-weight: 600; letter-spacing: .25em;
  text-transform: uppercase; color: var(--red-300);
  margin-bottom: 1rem;
}
.eyebrow::before,.eyebrow::after {
  content: ''; flex: 0 0 30px; height: 1px; background: var(--red-500);
}
.eyebrow.no-line::before,.eyebrow.no-line::after { display: none; }
.section-header h2 { margin-bottom: 1rem; }
.section-header p { font-size: 1.05rem; color: var(--text-secondary); }


.divider {
  display: flex; align-items: center; gap: 1rem;
  margin: 1.5rem 0;
}
.divider::before,.divider::after {
  content: ''; flex: 1; height: 1px; background: var(--border-red);
}
.divider-diamond { color: var(--red-500); font-size: 1rem; }


.hero-home {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; padding: var(--nav-h) 0 0;
}
.hero-home-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 50% 100%, rgba(139,0,0,0.25) 0%, transparent 70%),
    radial-gradient(ellipse 80% 60% at 20% 50%, rgba(100,0,0,0.15) 0%, transparent 60%),
    var(--bg-void);
}
.hero-pattern {
  position: absolute; inset: 0; opacity: .035;
  background-image:
    linear-gradient(45deg, rgba(255,255,255,1) 1px, transparent 1px),
    linear-gradient(-45deg, rgba(255,255,255,1) 1px, transparent 1px);
  background-size: 48px 48px;
}

.hero-suit {
  position: absolute; font-size: clamp(12rem,20vw,22rem);
  line-height: 1; user-select: none; pointer-events: none;
  opacity: .03; font-family: serif;
}
.hero-suit-1 { top: -3rem; left: -3rem; }
.hero-suit-2 { bottom: -3rem; right: -3rem; transform: rotate(15deg); }
.hero-suit-3 { top: 50%; right: 8%; transform: translateY(-50%) rotate(-10deg); font-size: 8rem; opacity: .05; }
.hero-home-content {
  position: relative; z-index: 1; text-align: center;
  padding: 3rem var(--pad-x);
}
.hero-label {
  font-size: .7rem; letter-spacing: .35em; text-transform: uppercase;
  color: var(--text-muted); margin-bottom: 1.5rem;
  display: flex; align-items: center; justify-content: center; gap: 1rem;
}
.hero-label::before,.hero-label::after {
  content: '♦'; color: var(--red-600); font-size: .8rem;
}
.hero-title {
  font-family: var(--font-display); font-size: clamp(4rem, 14vw, 11rem);
  font-weight: 900; letter-spacing: -.02em; line-height: .9;
  color: #fff; margin-bottom: .4rem;
}
.hero-title-sub {
  font-family: var(--font-display); font-size: clamp(.9rem, 2.5vw, 1.6rem);
  font-weight: 400; letter-spacing: .5em; text-transform: uppercase;
  color: var(--text-muted); margin-bottom: 1.5rem;
  font-style: italic;
}
.hero-tagline {
  font-size: clamp(1rem, 2vw, 1.2rem); color: var(--text-secondary);
  margin: 0 auto 2.5rem; max-width: 50ch;
}
.hero-cta { justify-content: center; }


.hero-page {
  position: relative; padding: calc(var(--nav-h) + 4rem) 0 4rem;
  overflow: hidden;
}
.hero-page-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 100% at 0% 50%, rgba(139,0,0,0.18) 0%, transparent 60%),
    var(--bg-dark);
}
.hero-page-pattern {
  position: absolute; inset: 0; opacity: .025;
  background-image:
    linear-gradient(45deg, rgba(255,255,255,1) 1px, transparent 1px),
    linear-gradient(-45deg, rgba(255,255,255,1) 1px, transparent 1px);
  background-size: 40px 40px;
}
.hero-page-content { position: relative; z-index: 1; }
.hero-page-content .eyebrow { margin-bottom: 1rem; }
.hero-page-content h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); }
.hero-page-content p {
  font-size: 1.1rem; color: var(--text-secondary);
  max-width: 55ch; margin-top: 1rem;
}
.hero-page-suit {
  position: absolute; right: var(--pad-x); top: 50%; transform: translateY(-50%);
  font-size: clamp(5rem, 14vw, 12rem); opacity: .06; user-select: none;
  font-family: serif; pointer-events: none;
}


.map-section { padding: 0; }
.map-header {
  padding: var(--pad-section) 0 3rem;
  background: var(--bg-dark);
}
.map-wrap {
  position: relative; width: 100%;
  padding-bottom: 42%;
  min-height: 380px;
  background: var(--bg-card);
  border-top: 1px solid var(--border-red);
  border-bottom: 1px solid var(--border-red);
}
.map-wrap iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%; border: 0;
  filter: grayscale(30%) brightness(0.85) contrast(1.1);
}
.map-info-strip {
  background: var(--bg-dark);
  border-top: 1px solid var(--border-faint);
  padding: 2rem 0;
}
.map-chips { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.map-chip {
  display: flex; align-items: center; gap: .75rem;
  padding: .75rem 1.25rem; background: var(--bg-card);
  border: 1px solid var(--border-subtle); border-radius: 2px;
  font-size: .85rem; color: var(--text-secondary);
}
.map-chip-icon { color: var(--red-500); font-size: 1.1rem; }
.map-chip strong { color: var(--text-primary); }


.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5px;
  background: var(--border-faint);
  border: 1px solid var(--border-faint);
}
.service-card {
  background: var(--bg-card);
  padding: 2.5rem 2rem;
  position: relative; overflow: hidden;
  transition: background var(--tr);
}
.service-card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--red-glow-sm) 0%, transparent 60%);
  opacity: 0; transition: opacity var(--tr);
}
.service-card:hover { background: var(--bg-raised); }
.service-card:hover::before { opacity: 1; }
.service-card:hover .service-icon { color: var(--red-400); transform: scale(1.15); }
.service-icon {
  font-size: 2rem; color: var(--red-600);
  display: block; margin-bottom: 1.25rem;
  transition: color var(--tr), transform var(--tr);
}
.service-card h3 { font-size: 1.2rem; margin-bottom: .6rem; color: #fff; }
.service-card p { font-size: .9rem; color: var(--text-secondary); max-width: none; }


.stats-section {
  background:
    linear-gradient(135deg, var(--red-900) 0%, var(--red-800) 50%, var(--red-900) 100%);
  padding: var(--pad-section) 0;
  position: relative; overflow: hidden;
}
.stats-section::before {
  content: ''; position: absolute; inset: 0; opacity: .08;
  background-image:
    linear-gradient(45deg, rgba(255,255,255,1) 1px, transparent 1px),
    linear-gradient(-45deg, rgba(255,255,255,1) 1px, transparent 1px);
  background-size: 40px 40px;
}
.stats-grid {
  position: relative; display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 3rem 2rem; text-align: center;
}
.stat-suit {
  font-size: 1.5rem; display: block; margin-bottom: .5rem; opacity: .6;
}
.stat-number {
  font-family: var(--font-display); font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 900; color: #fff; line-height: 1;
  text-shadow: 0 0 30px rgba(255,255,255,0.3);
}
.stat-label {
  font-size: .75rem; letter-spacing: .2em; text-transform: uppercase;
  color: rgba(255,255,255,0.6); margin-top: .5rem;
}


.hours-strip {
  background: var(--bg-card);
  border-top: 1px solid var(--border-red);
  padding: 2.5rem 0;
}
.hours-inner {
  display: flex; gap: 3rem; flex-wrap: wrap; align-items: center;
}
.hours-block { display: flex; flex-direction: column; gap: .25rem; }
.hours-block dt {
  font-size: .7rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--red-400); font-weight: 600;
}
.hours-block dd { font-size: 1rem; color: var(--text-primary); font-weight: 500; }
.hours-sep { width: 1px; height: 40px; background: var(--border-subtle); }


.about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center;
}
.about-visual {
  position: relative; display: flex; align-items: center; justify-content: center;
  aspect-ratio: 1; background: var(--bg-card);
  border: 1px solid var(--border-subtle);
}
.about-visual-inner {
  font-size: 10rem; opacity: .15; font-family: serif; user-select: none;
  filter: drop-shadow(0 0 40px var(--red-500));
}
.about-visual-badge {
  position: absolute; bottom: -1px; right: -1px;
  background: var(--red-500); color: #fff;
  padding: 1rem 1.5rem; font-family: var(--font-display);
  font-size: .75rem; letter-spacing: .15em; text-transform: uppercase;
}
.about-text h2 { margin-bottom: 1.25rem; }
.about-text p { margin-bottom: 1rem; }
.about-text .btn-ghost { margin-top: .5rem; }


.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}
.event-card {
  background: var(--bg-card); border: 1px solid var(--border-faint);
  transition: border-color var(--tr), transform var(--tr), box-shadow var(--tr);
  overflow: hidden; position: relative;
}
.event-card:hover {
  border-color: var(--border-red);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card), 0 0 30px var(--red-glow-sm);
}
.event-card-top {
  background: linear-gradient(135deg, var(--red-800) 0%, var(--red-900) 100%);
  padding: 1.5rem 1.75rem; position: relative; overflow: hidden;
  min-height: 120px; display: flex; flex-direction: column; justify-content: flex-end;
}
.event-card-top-suit {
  position: absolute; top: -1rem; right: -1rem; font-size: 6rem;
  opacity: .12; font-family: serif; user-select: none;
}
.event-date-badge {
  display: inline-flex; flex-direction: column; align-items: center;
  background: rgba(0,0,0,0.4); padding: .6rem .9rem;
  border-radius: 2px; width: fit-content;
  border: 1px solid rgba(255,255,255,0.15);
}
.event-date-day { font-size: 1.5rem; font-weight: 700; line-height: 1; color: #fff; }
.event-date-month { font-size: .65rem; letter-spacing: .15em; text-transform: uppercase; color: rgba(255,255,255,.6); }
.event-card-body { padding: 1.75rem; }
.event-category {
  font-size: .65rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--red-400); font-weight: 600; margin-bottom: .5rem;
}
.event-card h3 { font-size: 1.15rem; color: #fff; margin-bottom: .6rem; }
.event-card p { font-size: .88rem; color: var(--text-secondary); max-width: none; margin-bottom: 1.25rem; }
.event-meta {
  display: flex; gap: 1.25rem; font-size: .78rem; color: var(--text-muted);
  border-top: 1px solid var(--border-faint); padding-top: 1rem;
}
.event-meta span { display: flex; align-items: center; gap: .35rem; }


.event-featured {
  background: var(--bg-raised);
  border: 1px solid var(--border-red);
  grid-column: 1 / -1;
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
}
.event-featured .event-card-top { min-height: 280px; }
.event-featured .event-card-body { padding: 2.5rem; display: flex; flex-direction: column; justify-content: center; }
.event-featured h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
.event-featured-tag {
  position: absolute; top: 1.25rem; right: 1.25rem;
  background: var(--red-500); color: #fff;
  font-size: .65rem; letter-spacing: .2em; font-weight: 700; text-transform: uppercase;
  padding: .3rem .75rem;
}


.restaurant-intro {
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center;
}
.restaurant-visual {
  background: linear-gradient(135deg, var(--red-900), var(--bg-card));
  border: 1px solid var(--border-red);
  aspect-ratio: 4/3; display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.restaurant-visual-text {
  font-family: var(--font-display); font-size: 5rem; font-weight: 900;
  font-style: italic; color: rgba(255,255,255,0.08); user-select: none;
}
.restaurant-visual-label {
  position: absolute; bottom: 1.5rem; left: 1.5rem;
  font-family: var(--font-display); font-size: 1.8rem; font-weight: 700;
  font-style: italic; color: rgba(255,255,255,0.7);
}
.menu-section { padding-top: 1rem; }
.menu-tabs { display: flex; gap: 0; border-bottom: 1px solid var(--border-subtle); margin-bottom: 2.5rem; }
.menu-tab {
  padding: .75rem 1.5rem; font-size: .8rem; letter-spacing: .1em;
  text-transform: uppercase; font-weight: 600; color: var(--text-muted);
  border-bottom: 2px solid transparent; margin-bottom: -1px;
  cursor: pointer; transition: var(--tr);
}
.menu-tab.active, .menu-tab:hover { color: var(--text-primary); border-color: var(--red-500); }
.menu-panel { display: none; }
.menu-panel.active { display: block; }
.menu-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
.menu-item {
  padding: 1.25rem 0; border-bottom: 1px solid var(--border-faint);
  display: flex; justify-content: space-between; align-items: baseline; gap: 1rem;
}
.menu-item:last-child { border-bottom: none; }
.menu-item-info h4 { font-size: 1rem; color: var(--text-primary); margin-bottom: .2rem; }
.menu-item-info p { font-size: .83rem; color: var(--text-muted); max-width: 35ch; }
.menu-price {
  font-family: var(--font-display); font-size: 1rem; font-weight: 600;
  color: var(--red-400); white-space: nowrap;
}
.restaurant-info {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5px;
  background: var(--border-faint); border: 1px solid var(--border-faint);
  margin-top: 4rem;
}
.restaurant-info-card {
  background: var(--bg-card); padding: 2rem;
  text-align: center;
}
.restaurant-info-card .icon { font-size: 2rem; margin-bottom: 1rem; }
.restaurant-info-card h4 { font-size: 1rem; margin-bottom: .4rem; color: #fff; }
.restaurant-info-card p { font-size: .88rem; color: var(--text-secondary); max-width: none; }


.contacts-layout {
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 4rem; align-items: start;
}
.contact-info-cards { display: flex; flex-direction: column; gap: 1rem; }
.contact-info-card {
  display: flex; gap: 1.25rem; align-items: flex-start;
  padding: 1.5rem; background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  transition: border-color var(--tr);
}
.contact-info-card:hover { border-color: var(--border-red); }
.contact-info-card-icon {
  flex-shrink: 0; width: 44px; height: 44px;
  background: var(--red-800); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
}
.contact-info-card h4 {
  font-size: .75rem; letter-spacing: .15em; text-transform: uppercase;
  color: var(--red-400); margin-bottom: .35rem;
}
.contact-info-card p { font-size: .93rem; color: var(--text-secondary); max-width: none; }
.contact-info-card a { color: var(--text-primary); transition: color var(--tr); }
.contact-info-card a:hover { color: var(--red-300); }


.contact-form-wrap { }
.form-title {
  font-size: 1.4rem; margin-bottom: 1.75rem; color: #fff;
  padding-bottom: 1rem; border-bottom: 1px solid var(--border-subtle);
}
.form { display: flex; flex-direction: column; gap: 1.1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: .45rem; }
.form-label {
  font-size: .75rem; letter-spacing: .12em; text-transform: uppercase;
  font-weight: 600; color: var(--text-muted);
}
.form-input, .form-textarea {
  background: var(--bg-card); border: 1px solid var(--border-subtle);
  color: var(--text-primary); padding: .85rem 1rem;
  font-size: .93rem; font-family: var(--font-body);
  border-radius: 2px; transition: border-color var(--tr), box-shadow var(--tr);
  outline: none; width: 100%;
}
.form-input:focus, .form-textarea:focus {
  border-color: var(--red-500);
  box-shadow: 0 0 0 3px var(--red-glow-sm);
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--text-muted); }
.form-textarea { resize: vertical; min-height: 140px; }
.form-submit { margin-top: .5rem; }
.form-success {
  display: none; padding: 1.25rem 1.5rem;
  background: rgba(0,100,0,0.15); border: 1px solid rgba(0,200,0,0.2);
  color: #6effa3; font-size: .9rem; border-radius: 2px; margin-top: .5rem;
}
.contact-map-wrap {
  position: relative; width: 100%;
  padding-bottom: 42%; min-height: 340px;
  border: 1px solid var(--border-red);
  margin-top: var(--pad-section);
}
.contact-map-wrap iframe {
  position: absolute; inset: 0; width: 100%; height: 100%; border: 0;
  filter: grayscale(25%) brightness(0.85);
}


.legal-content {
  max-width: 760px;
}
.legal-toc {
  background: var(--bg-card); border: 1px solid var(--border-subtle);
  padding: 1.75rem; margin-bottom: 3rem; border-left: 3px solid var(--red-500);
}
.legal-toc h4 { font-size: .85rem; margin-bottom: .75rem; color: var(--text-secondary); }
.legal-toc ol { padding-left: 1.25rem; counter-reset: toc; list-style: decimal; }
.legal-toc li { font-size: .88rem; color: var(--text-secondary); padding: .2rem 0; }
.legal-toc a { color: var(--red-300); }
.legal-toc a:hover { text-decoration: underline; }
.legal-section { margin-bottom: 3rem; padding-bottom: 3rem; border-bottom: 1px solid var(--border-faint); }
.legal-section:last-child { border-bottom: none; }
.legal-section h3 { font-size: 1.3rem; margin-bottom: 1rem; color: #fff; }
.legal-section p { margin-bottom: .85rem; font-size: .95rem; line-height: 1.8; }
.legal-section ul { padding-left: 1.5rem; margin-bottom: .85rem; }
.legal-section ul li {
  font-size: .95rem; color: var(--text-secondary);
  list-style: disc; padding: .25rem 0; line-height: 1.7;
}


.rg-warning {
  background: linear-gradient(135deg, var(--red-900), var(--red-800));
  border: 1px solid var(--border-red-md);
  padding: 2rem 2.5rem; margin-bottom: 3rem;
  position: relative; overflow: hidden;
}
.rg-warning::before {
  content: '18+'; position: absolute; right: 2rem; top: 50%; transform: translateY(-50%);
  font-family: var(--font-display); font-size: 4rem; font-weight: 900;
  color: rgba(255,255,255,0.08);
}
.rg-warning h3 { color: #fff; margin-bottom: .5rem; font-size: 1.2rem; }
.rg-warning p { color: rgba(255,255,255,0.75); max-width: none; font-size: .93rem; }
.rg-signs-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(260px,1fr));
  gap: 1rem; margin-bottom: 3rem;
}
.rg-sign {
  background: var(--bg-card); border: 1px solid var(--border-subtle);
  padding: 1.5rem; display: flex; gap: 1rem; align-items: flex-start;
}
.rg-sign-num {
  flex-shrink: 0; width: 32px; height: 32px;
  background: var(--red-700); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: .8rem; font-weight: 700;
}
.rg-sign h4 { font-size: .95rem; color: var(--text-primary); margin-bottom: .3rem; }
.rg-sign p { font-size: .83rem; color: var(--text-muted); max-width: none; }
.rg-hotlines { display: flex; flex-direction: column; gap: .75rem; }
.rg-hotline {
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.25rem 1.5rem; background: var(--bg-card);
  border: 1px solid var(--border-subtle); gap: 1rem; flex-wrap: wrap;
}
.rg-hotline h4 { font-size: 1rem; color: #fff; margin-bottom: .15rem; }
.rg-hotline p { font-size: .83rem; color: var(--text-secondary); max-width: none; }
.rg-hotline a {
  font-size: 1.1rem; font-weight: 600; color: var(--red-300);
  transition: color var(--tr); white-space: nowrap;
}
.rg-hotline a:hover { color: var(--red-400); }
.rg-tools { display: grid; grid-template-columns: repeat(auto-fit,minmax(220px,1fr)); gap: 1rem; }
.rg-tool {
  background: var(--bg-card); border: 1px solid var(--border-subtle);
  padding: 1.75rem; text-align: center;
  transition: border-color var(--tr);
}
.rg-tool:hover { border-color: var(--border-red); }
.rg-tool .icon { font-size: 2rem; margin-bottom: 1rem; display: block; }
.rg-tool h4 { font-size: 1rem; color: #fff; margin-bottom: .4rem; }
.rg-tool p { font-size: .85rem; color: var(--text-secondary); max-width: none; }


.footer {
  background: var(--bg-dark);
  border-top: 1px solid var(--border-subtle);
  padding: 4rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem; margin-bottom: 3rem;
}
.footer-brand .nav-logo { margin-bottom: 1.25rem; }
.footer-brand p { font-size: .88rem; color: var(--text-muted); max-width: 38ch; }
.footer-col h4 {
  font-size: .7rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--text-muted); margin-bottom: 1.25rem; font-family: var(--font-body); font-weight: 600;
}
.footer-col ul { display: flex; flex-direction: column; gap: .6rem; }
.footer-col a {
  font-size: .88rem; color: var(--text-secondary);
  transition: color var(--tr);
}
.footer-col a:hover { color: var(--red-300); }
.footer-bottom {
  border-top: 1px solid var(--border-faint);
  padding-top: 1.75rem;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1rem;
}
.footer-bottom p { font-size: .78rem; color: var(--text-muted); max-width: none; }
.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-links a {
  font-size: .78rem; color: var(--text-muted); transition: color var(--tr);
}
.footer-bottom-links a:hover { color: var(--red-300); }
.footer-18 {
  display: inline-flex; align-items: center; justify-content: center;
  width: 32px; height: 32px; border: 1px solid var(--text-muted);
  border-radius: 50%; font-size: .7rem; font-weight: 700;
  color: var(--text-muted);
}


@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes glowPulse {
  
  0%,100% { filter: drop-shadow(0 0 0px rgba(204,0,0,0)); }
  50%      { filter: drop-shadow(0 0 28px rgba(204,0,0,0.65)); }
}
.anim-fade-up { animation: fadeUp .7s cubic-bezier(0.4,0,0.2,1) both; }
.anim-fade-up-2 { animation: fadeUp .7s .15s cubic-bezier(0.4,0,0.2,1) both; }
.anim-fade-up-3 { animation: fadeUp .7s .3s cubic-bezier(0.4,0,0.2,1) both; }
.anim-fade-up-4 { animation: fadeUp .7s .45s cubic-bezier(0.4,0,0.2,1) both; }
.anim-fade-in  { animation: fadeIn .6s ease both; }
.hero-title { animation: glowPulse 4s ease-in-out 1s infinite; will-change: filter; }


@media (prefers-reduced-motion: reduce) {
  .ticker-inner { animation: none; }
  .anim-fade-up, .anim-fade-up-2, .anim-fade-up-3,
  .anim-fade-up-4, .anim-fade-in { animation: none; opacity: 1; transform: none; }
  .hero-title { animation: none; will-change: auto; }
  .reveal { transition: none; }
}


.reveal {
  opacity: 0; transform: translateY(30px);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }


.text-red   { color: var(--red-300); }
.text-muted { color: var(--text-muted); }
.text-center { text-align: center; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }


@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-visual { max-width: 400px; }
  .restaurant-intro { grid-template-columns: 1fr; gap: 3rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .event-featured { grid-template-columns: 1fr; }
  .event-featured .event-card-top { min-height: 200px; }
}
@media (max-width: 768px) {
  :root { --nav-h: 64px; }
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .contacts-layout { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .menu-grid { grid-template-columns: 1fr; }
  .restaurant-info { grid-template-columns: 1fr; }
  .hours-sep { display: none; }
  .hours-inner { gap: 1.5rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: .75rem; }
  .hero-page-suit { display: none; }
  .map-chips { flex-direction: column; }
  .map-wrap { padding-bottom: 70%; }
}
@media (max-width: 480px) {
  .btn-group { flex-direction: column; }
  .btn { justify-content: center; }
  .events-grid { grid-template-columns: 1fr; }
  .rg-signs-grid { grid-template-columns: 1fr; }
  .rg-tools { grid-template-columns: 1fr; }
}
