/* ============================================
   BAR HAVRAN Ã¢â‚¬â€ main stylesheet
   ============================================ */

:root {
  /* Accent palettes Ã¢â‚¬â€ switched via [data-accent] */
  --accent: #d4a24a;
  --accent-soft: #e8c878;
  --accent-deep: #a87a2e;

  /* Dark theme (default) */
  --bg: #0a0e14;
  --bg-2: #11161e;
  --bg-3: #161c25;
  --surface: #1a212c;
  --surface-2: #232b38;
  --border: rgba(212, 162, 74, 0.15);
  --border-strong: rgba(212, 162, 74, 0.35);
  --text: #e8e4dc;
  --text-muted: #a8a39a;
  --text-dim: #6b6660;
  --green: #3d5a4a;
  --green-deep: #2a4234;

  --shadow-sm: 0 4px 14px rgba(0,0,0,0.35);
  --shadow-md: 0 10px 32px rgba(0,0,0,0.45);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.55);
  --shadow-glow: 0 0 40px rgba(212, 162, 74, 0.18);

  --radius-sm: 4px;
  --radius: 8px;
  --radius-lg: 14px;

  --font-display: 'Cinzel', 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-script: 'Caveat', cursive;
}

[data-accent="copper"] {
  --accent: #c47a3d;
  --accent-soft: #e09a5a;
  --accent-deep: #8e5226;
}
[data-accent="green"] {
  --accent: #6b9a5e;
  --accent-soft: #8db97f;
  --accent-deep: #4a7240;
}

/* Light theme */
[data-theme="light"] {
  --bg: #f5f0e8;
  --bg-2: #ede5d8;
  --bg-3: #e3d9c8;
  --surface: #ffffff;
  --surface-2: #faf6ee;
  --border: rgba(40, 30, 18, 0.12);
  --border-strong: rgba(168, 122, 46, 0.4);
  --text: #1f1a14;
  --text-muted: #5a5044;
  --text-dim: #8a8074;
  --shadow-sm: 0 4px 14px rgba(40,30,18,0.08);
  --shadow-md: 0 10px 32px rgba(40,30,18,0.12);
  --shadow-lg: 0 20px 60px rgba(40,30,18,0.18);
  --shadow-glow: 0 0 40px rgba(212, 162, 74, 0.25);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  transition: background 0.4s ease, color 0.4s ease;
}

img { max-width: 100%; display: block; }
a { color: var(--accent); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--accent-soft); }

h1,h2,h3,h4 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.02em;
  margin: 0 0 0.5em;
  line-height: 1.15;
}

.script {
  font-family: var(--font-script);
  color: var(--accent);
  font-weight: 500;
}

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 1rem;
  display: inline-block;
}

.container { max-width: 1240px; margin: 0 auto; padding: 0 1.5rem; }
.container-narrow { max-width: 920px; margin: 0 auto; padding: 0 1.5rem; }

section { padding: 6rem 0; position: relative; }
@media (max-width: 768px) { section { padding: 4rem 0; } }

/* ============== NAVBAR ============== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1rem 0;
  transition: background 0.35s ease, padding 0.35s ease, backdrop-filter 0.35s ease;
}
.nav.scrolled {
  background: rgba(10, 14, 20, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 1.2rem 0;
  border-bottom: 1px solid var(--border);
}
[data-theme="light"] .nav.scrolled {
  background: rgba(245, 240, 232, 0.95);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

/* LEFT: menu */
.header-left {
  flex: 1;
  display: flex;
  align-items: center;
}

/* CENTER: logo */
.nav-logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  height: 150px;
  top: 10px;
}
.nav-logo img {
  height: 140px;
  width: auto;
  transition: height 0.3s ease;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.4));
}
.nav.scrolled .nav-logo img {height: 68px;}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  list-style: none;
  padding: 0; margin: 0;
}
.nav-links a {
  color: var(--text);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  position: relative;
  padding: 0.4rem 0;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1px;
  background: var(--accent);
  transition: width 0.3s ease;
}
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--accent); }

/* RIGHT: status + socials */
.header-right {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 10px;
  position: relative;
  z-index: 3;
}

/* Open/closed status pill */
.open-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  min-height: 42px;
  border: 1px solid transparent;
  font-size: 0.76rem;
  font-weight: 600;
  white-space: nowrap;
  cursor: default;
}
.open-pill i { font-size: 0.5rem; }
.status-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.08;
  gap: 4px;
}
.status-title { font-size: 0.82rem; font-weight: 800; white-space: nowrap; }
.status-detail { font-size: 0.7rem; font-weight: 500; opacity: 0.85; white-space: nowrap; }

.status-open {
  color: #c8f5dc;
  background: rgba(31, 91, 71, 0.36);
  border-color: rgba(74, 193, 139, 0.45);
}
.status-open i { animation: pulse-open-dot 1.8s ease-in-out infinite; }
@keyframes pulse-open-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}
.status-warning {
  color: #ffe2af;
  background: rgba(166, 110, 21, 0.35);
  border-color: rgba(235, 168, 61, 0.5);
}
.status-warning i { color: #ffbe4d; }
.status-closed {
  color: #ffd2d2;
  background: rgba(125, 24, 24, 0.36);
  border-color: rgba(211, 69, 69, 0.5);
}
.status-closed i { color: #f07070; }
.status-opening {
  color: #fff8c5;
  background: rgba(150, 130, 20, 0.35);
  border-color: rgba(220, 200, 50, 0.5);
}
.status-opening i { color: #f0d84d; animation: pulse-open-dot 1.8s ease-in-out infinite; }

/* Social links in header */
.header-social-link {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(216, 167, 78, 0.45);
  color: #f4ddb0;
  font-size: 0.95rem;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.header-social-link:hover {
  transform: translateY(-1px);
  background: rgba(216, 167, 78, 0.16);
  border-color: rgba(255, 218, 145, 0.9);
  color: #ffeecb;
}

/* Lang switch */
.lang-switch {
  display: inline-flex;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 3px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
}
.lang-switch a {
  background: transparent;
  border: none;
  color: var(--text-muted);
  padding: 4px 10px;
  border-radius: 999px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
}
.lang-switch a.active {
  background: var(--accent);
  color: #0a0e14;
}

/* Mobile right (status + hamburger) */
.header-mobile-right {
  display: none;
  align-items: center;
  gap: 10px;
}

.open-pill--sm {
  padding: 0.35rem 0.7rem;
  font-size: 0.72rem;
  gap: 6px;
}
.open-pill--sm .status-title { font-size: 0.72rem; font-weight: 700; }
.open-pill--sm i { font-size: 0.4rem; }

/* Hamburger toggle */
.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text);
  width: 44px; height: 44px;
  border-radius: 50%;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}
.nav-toggle-bar {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s ease;
}
.nav-toggle { flex-direction: column; gap: 5px; }
.nav-toggle.active .nav-toggle-bar:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active .nav-toggle-bar:nth-child(2) { opacity: 0; }
.nav-toggle.active .nav-toggle-bar:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile menu overlay */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 99;
  background: rgba(10, 14, 20, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}
.mobile-menu.open { opacity: 1; visibility: visible; }

/* When mobile menu is open: hide logo + status pill, keep only the X button visible */
.nav-logo,
.header-mobile-right .open-pill {
  transition: opacity 0.25s ease, visibility 0.25s ease;
}
body:has(.mobile-menu.open) .nav-logo,
body:has(.mobile-menu.open) .header-mobile-right .open-pill {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
body:has(.mobile-menu.open) .nav {
  pointer-events: none;
}
body:has(.mobile-menu.open) .nav-toggle {
  pointer-events: auto;
}
/* When mobile menu is open, hide the nav's visible chrome (background, blur, border)
   so the scrolled-state header bar doesn't show through on top of the menu.
   Fixes iOS Safari quirk where scrolled class can persist and the dark header bar
   appears above the menu while scrolling up. */
body:has(.mobile-menu.open) .nav,
body:has(.mobile-menu.open) .nav.scrolled {
  background: transparent !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  border-bottom: none !important;
}
.mobile-menu-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 2rem;
  gap: 2rem;
}
.mobile-menu-lang { display: flex; gap: 8px; }
.mobile-lang-btn {
  display: inline-flex; align-items: center; justify-content: center;
  width: 52px; height: 42px;
  border: 1px solid var(--border); border-radius: var(--radius);
  color: var(--text-muted); font-size: 0.85rem; font-weight: 600;
  letter-spacing: 0.1em; transition: all 0.2s;
}
.mobile-lang-btn.active { background: var(--accent); border-color: var(--accent); color: #0a0e14; }
.mobile-menu-links { list-style: none; padding: 0; margin: 0; text-align: center; }
.mobile-menu-links li { margin-bottom: 0.5rem; }
.mobile-menu-links a {
  color: var(--text); font-family: var(--font-display);
  font-size: 1.6rem; font-weight: 500; letter-spacing: 0.05em;
  padding: 0.5rem 1rem; display: inline-block; transition: color 0.2s;
}
.mobile-menu-links a:hover, .mobile-menu-links a.active { color: var(--accent); }
.mobile-menu-socials { display: flex; gap: 1.2rem; }
.mobile-menu-socials a { color: var(--text-muted); font-size: 1.3rem; transition: color 0.2s; }
.mobile-menu-socials a:hover { color: var(--accent); }
.mobile-menu-phone {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.8rem 1.8rem; border: 1px solid var(--accent); border-radius: 999px;
  color: var(--accent); font-family: var(--font-display);
  font-size: 1rem; font-weight: 600; transition: all 0.2s;
}
.mobile-menu-phone:hover { background: var(--accent); color: #0a0e14; }

/* Responsive */
.d-none { display: none !important; }
.d-lg-flex { display: none !important; }
@media (min-width: 992px) { .d-lg-flex { display: flex !important; } }

@media (max-width: 991px) {
  .nav-logo {position: relative;left: auto;transform: none;height: 50px;top: 0;}
  .nav-logo img {height: 80px;}
  .nav.scrolled .nav-logo img { height: 48px; }
  .nav-links--desktop { display: none; }
  .header-right--desktop { display: none; }
  .header-mobile-right { display: flex; }
  .nav-toggle { display: inline-flex; }
}

@media (max-width: 768px) {
  .nav.scrolled{
    padding: 10px 0;
  }
}

/* ============== BUTTONS ============== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.95rem 1.75rem;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.4,0,0.2,1);
  white-space: nowrap;
  text-decoration: none;
}
.btn-primary {
  background: var(--accent);
  color: #0a0e14;
  box-shadow: 0 8px 24px rgba(212, 162, 74, 0.25);
  text-align: center;
  justify-content: center;
}
.btn-primary:hover {
  background: var(--accent-soft);
  color: #0a0e14;
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(212, 162, 74, 0.35);
}
.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border-strong);
}
.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}
.btn svg { width: 14px; height: 14px; }

/* ============== HERO ============== */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 7rem 0 3rem;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero-bg img {
  width: 100%;
  height: 115%;
  object-fit: cover;
  will-change: transform;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(10,14,20,0.35) 0%, rgba(10,14,20,0.85) 100%),
  linear-gradient(180deg, rgba(10,14,20,0.55) 0%, rgba(10,14,20,0.55) 40%, rgba(10,14,20,0.98) 100%);
}
.hero-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 920px;
  padding: 0 1.5rem;
  color: #f5f0e8;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.72rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
}
.hero-eyebrow .line {
  width: 40px; height: 1px;
  background: var(--accent);
  display: inline-block;
}
.hero h1 {
  font-size: clamp(2.75rem, 8vw, 6.5rem);
  margin-bottom: 1.25rem;
  letter-spacing: 0.04em;
  font-weight: 600;
  text-shadow: 0 4px 30px rgba(0,0,0,0.5);
}
.hero h1 .accent { color: var(--accent); font-style: italic; }
.hero p.lead {
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  color: rgba(245, 240, 232, 0.85);
  max-width: 620px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-meta {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  margin-top: 4rem;
  flex-wrap: wrap;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.7);
}
.hero-meta-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
}
.hero-meta-item .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  display: inline-block;
}
.hero-meta-item .dot.live {
  background: #5fc97e;
  box-shadow: 0 0 0 0 rgba(95, 201, 126, 0.7);
  animation: pulse 2s infinite;
}
.hero-meta-item .dot.closed { background: #e06363; }
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(95, 201, 126, 0.6); }
  70% { box-shadow: 0 0 0 10px rgba(95, 201, 126, 0); }
  100% { box-shadow: 0 0 0 0 rgba(95, 201, 126, 0); }
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.5);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
}
.hero-scroll .bar {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  animation: scrollBar 2.5s ease-in-out infinite;
}
@keyframes scrollBar {
  0%,100% { transform: scaleY(1); transform-origin: top; opacity: 1; }
  50% { transform: scaleY(0.3); transform-origin: top; opacity: 0.4; }
}

/* Hero giant title overlay */
.hero-watermark {
  position: absolute;
  bottom: -15%;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-size: clamp(8rem, 25vw, 22rem);
  font-weight: 700;
  letter-spacing: 0.05em;
  color: rgba(212, 162, 74, 0.06);
  pointer-events: none;
  z-index: 1;
  white-space: nowrap;
  line-height: 1;
}

/* ============== SECTION HEADERS ============== */
.sect-head {
  text-align: center;
  margin-bottom: 4rem;
}
.sect-head h2 {
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  margin: 0;
}
.sect-head p {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 1rem auto 0;
}
.sect-head.left { text-align: left; }
.sect-head.left p { margin-left: 0; margin-right: 0; }

/* divider with ornament */
.ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  color: var(--accent);
  margin: 1.25rem 0;
}
.ornament .line { width: 60px; height: 1px; background: currentColor; opacity: 0.5; }
.ornament .glyph {
  font-size: 0.9rem;
  letter-spacing: 0.5em;
}

/* ============== ABOUT ============== */
.about {
  background: var(--bg-2);
  position: relative;
  overflow: hidden;
}
.about::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(212,162,74,0.08), transparent 70%);
  pointer-events: none;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
@media (max-width: 880px) {
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
}
.about-img-wrap {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  will-change: transform;
}
.about-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid var(--border-strong);
  border-radius: inherit;
  pointer-events: none;
}
.about-img-deco {
  position: absolute;
  bottom: -30px; left: -30px;
  width: 120px; height: 120px;
  border: 1px solid var(--accent);
  border-radius: var(--radius-lg);
  z-index: -1;
}
.about-text h2 {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
}
.about-text p {
  color: var(--text-muted);
  font-size: 1.02rem;
  margin: 1rem 0;
}
.about-features {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}
.about-feat {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 0;
  border-top: 1px solid var(--border);
}
.about-feat:last-child { border-bottom: 1px solid var(--border); }
.about-feat a{text-decoration:underline}
.about-feat-num {
  font-family: var(--font-display);
  color: var(--accent);
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  min-width: 36px;
}
.about-feat strong {
  display: block;
  color: var(--text);
  font-weight: 600;
  margin-bottom: 0.25rem;
}
.about-feat span {
  color: var(--text-muted);
  font-size: 0.92rem;
}

/* ============== STATS ============== */
.stats {
  background: var(--bg);
  padding: 4rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  text-align: center;
}
@media (max-width: 720px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
}
.stat {
  padding: 1rem;
}
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  color: var(--accent);
  line-height: 1;
  font-weight: 600;
}
.stat-num .plus { font-size: 0.6em; vertical-align: super; opacity: 0.7; margin-left: 0.1em; }
.stat-label {
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 0.6rem;
}

/* ============== GALLERY (homepage preview) ============== */
.gallery-preview {
  background: var(--bg);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 250px;
  gap: 1rem;
}
@media (max-width: 880px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 220px; } }

.g-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
}
.g-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.2,0,0.2,1);
}
.g-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,14,20,0.7), transparent 60%);
  opacity: 0.6;
  transition: opacity 0.3s;
}
.g-item:hover img { transform: scale(1.06); }
.g-item:hover::after { opacity: 0.85; }
.g-item-label {
  position: absolute;
  bottom: 1rem; left: 1rem;
  z-index: 2;
  color: #f5f0e8;
  font-family: var(--font-display);
  font-size: 0.95rem;
  letter-spacing: 0.1em;
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.3s;
}
.g-item:hover .g-item-label { opacity: 1; transform: translateY(0); }

/* Bento layout */
.g-item.span-2-2 { grid-column: span 2; grid-row: span 2; }
.g-item.span-2 { grid-column: span 2; }
.g-item.span-row-2 { grid-row: span 2; }
@media (max-width: 880px) {
  .g-item.span-2-2, .g-item.span-2, .g-item.span-row-2 {
    grid-column: span 1; grid-row: span 1;
  }
  .g-item.feature { grid-column: span 2; grid-row: span 2; }
}

.gallery-grid--full {
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: 360px;
  gap: 1.2rem;
}
@media (max-width: 680px) { .gallery-grid--full { grid-template-columns: 1fr; grid-auto-rows: 300px; } }

.gallery-grid--page {
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 1rem;
}
@media (max-width: 880px) { .gallery-grid--page { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; } }
@media (max-width: 520px) { .gallery-grid--page { grid-template-columns: 1fr; grid-auto-rows: 250px; } }
@media (max-width: 520px) {
  .gallery-grid--page .g-item.span-2-2,
  .gallery-grid--page .g-item.span-2,
  .gallery-grid--page .g-item.span-row-2 { grid-column: span 1; grid-row: span 1; }
}

.gallery-cta {
  text-align: center;
  margin-top: 3rem;
}

/* ============== GALLERY LISTING (cards) ============== */
.gallery-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 880px) { .gallery-list { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .gallery-list { grid-template-columns: 1fr; } }

/* homepage gallery preview â€” cards side by side */
.gallery-home-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.gallery-home-cards .gallery-card { aspect-ratio: 3 / 2; }

.gallery-card {
  position: relative;
  display: block;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  text-decoration: none;
  transition: box-shadow 0.3s, border-color 0.3s, transform 0.3s;
}
.gallery-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.2,0,0.2,1);
}
.gallery-card::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,14,20,0.93) 0%, rgba(10,14,20,0.4) 42%, transparent 72%);
  transition: opacity 0.3s;
}
.gallery-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-strong);
  box-shadow: var(--shadow-md), var(--shadow-glow);
}
.gallery-card:hover img { transform: scale(1.05); }

.gallery-card-overlay {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem 1.4rem 1.3rem;
}
.gallery-card-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  line-height: 1.3;
  letter-spacing: 0.04em;
  color: #f5f0e8;
}
.gallery-card-count {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  flex-shrink: 0;
  font-size: 0.78rem;
  letter-spacing: 0.03em;
  color: var(--accent-soft);
  transition: gap 0.3s;
}
.gallery-card:hover .gallery-card-count { gap: 0.6rem; }

/* gallery detail â€” header above the photo grid */
.gallery-detail-head {
  text-align: center;
  margin-bottom: 2.6rem;
}
.gallery-detail-head h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--text);
  margin: 0.7rem 0 0;
}
.gallery-detail-head .ornament {
  color: var(--accent);
  margin: 0.8rem 0;
}
.gallery-detail-head p {
  max-width: 620px;
  margin: 0 auto;
  color: var(--text-muted);
}
.gallery-back {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.25s;
}
.gallery-back:hover { color: var(--accent); }

/* ============== FOOD MENU (jÃ­delnÃ­ lÃ­stek) ============== */

/* Sticky category nav â€” horizontal scroll chips that follow viewport */
.food-nav {
  position: sticky;
  top: 85px;
  z-index: 40;
  margin: -1rem -1.5rem 2.5rem;
  background: rgba(10, 14, 20, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
[data-theme="light"] .food-nav { background: rgba(245, 240, 232, 0.92); }
.food-nav-inner {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  padding: 0.7rem 1.5rem;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: rgba(212,162,74,0.35) transparent;
}
.food-nav-inner::-webkit-scrollbar { height: 4px; }
.food-nav-inner::-webkit-scrollbar-track { background: transparent; }
.food-nav-inner::-webkit-scrollbar-thumb { background: rgba(212,162,74,0.35); border-radius: 2px; }
.food-nav-chip {
  flex-shrink: 0;
  padding: 0.45rem 1rem;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--text-muted);
  font-size: 0.82rem;
  letter-spacing: 0.03em;
  white-space: nowrap;
  text-decoration: none;
  transition: all 0.2s ease;
  font-weight: 500;
}
.food-nav-chip:hover {
  border-color: var(--accent);
  color: var(--text);
}
.food-nav-chip.is-active {
  background: var(--accent);
  border-color: var(--accent);
  color: #0a0e14;
  font-weight: 600;
}
@media (max-width: 720px) {
  .food-nav {top: 70px;margin: -1rem -1rem 2rem;}
  .food-nav-inner {padding: 1rem 1rem;}
  .food-nav-chip { font-size: 0.78rem; padding: 0.4rem 0.85rem; }
}

.food-menu {
  max-width: 880px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
.food-cat { scroll-margin-top: 140px; }
.food-cat {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.8rem 1.6rem;
}
.food-cat-head {
  text-align: center;
  margin-bottom: 1.5rem;
}
.food-cat-head h2 {
  font-family: var(--font-display);
  font-size: 1.7rem;
  letter-spacing: 0.06em;
  color: var(--accent);
  margin: 0;
}
.food-cat-head p {
  color: var(--text-muted);
  margin: 0.4rem 0 0;
  font-size: 0.95rem;
}
.food-cat-head .ornament {
  color: var(--accent);
  margin: 0.7rem 0 0;
}
.food-items {
  list-style: none;
  padding: 0;
  margin: 0;
}
.food-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px dashed var(--border);
}
.food-item:last-child { border-bottom: none; }
.food-item-main { flex: 1; min-width: 0; }
.food-item-name {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.5rem;
  color: var(--text);
  font-weight: 500;
  font-size: 1.02rem;
}
.food-item-unit {
  color: var(--text-muted);
  font-size: 0.82rem;
  font-weight: 400;
}
.food-item-badge {
  background: rgba(212, 162, 74, 0.15);
  color: var(--accent-soft);
  padding: 0.12rem 0.55rem;
  border-radius: 10px;
  font-size: 0.7rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 500;
}
.food-item-desc {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.5;
  margin-top: 0.25rem;
}
.food-item-allergens {
  color: var(--text-dim);
  font-size: 0.75rem;
  margin-top: 0.2rem;
  letter-spacing: 0.03em;
}
.food-item-price {
  color: var(--accent);
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  white-space: nowrap;
  padding-top: 0.1rem;
}
@media (max-width: 560px) {
  .food-cat { padding: 1.5rem 1.2rem 1.2rem; }
  .food-cat-head h2 { font-size: 1.4rem; }
  .food-item-name { font-size: 0.95rem; }
  .food-item-price { font-size: 1.05rem; }
}

/* ============== HOURS / RESERVATION strip ============== */
.hours {
  background: var(--bg-2);
  position: relative;
  overflow: hidden;
}
.hours-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
}
@media (max-width: 880px) { .hours-grid { grid-template-columns: 1fr; gap: 3rem; } }

.hours-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
}
.hours-status {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  background: rgba(95, 201, 126, 0.1);
  border: 1px solid rgba(95, 201, 126, 0.3);
  color: #5fc97e;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.hours-status.closed {
  background: rgba(224, 99, 99, 0.1);
  border-color: rgba(224, 99, 99, 0.3);
  color: #e06363;
}
.hours-status.warning {
  background: rgba(235, 168, 61, 0.1);
  border-color: rgba(235, 168, 61, 0.3);
  color: #ebac3d;
}
.hours-status .label { font-weight: 700; letter-spacing: 0.2em; }
.hours-status .sub {
  margin-left: 0.4rem;
  letter-spacing: 0.05em;
  opacity: 0.85;
  font-weight: 500;
}
.hours-status .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: currentColor;
  animation: pulse 2s infinite;
}
.hours-table {
  list-style: none;
  padding: 0;
  margin: 0;
}
.hours-table li {
  display: flex;
  justify-content: space-between;
  padding: 0.85rem 0;
  border-top: 1px solid var(--border);
  font-size: 0.95rem;
}
.hours-table li:last-child { border-bottom: 1px solid var(--border); }
.hours-table li.today {
  color: var(--accent);
  font-weight: 600;
}
.hours-table .day {
  letter-spacing: 0.08em;
}
.hours-table .time {
  font-variant-numeric: tabular-nums;
}

/* table-openDoor inside hours-card (from CMS banners) */
.hours-card .table-openDoor {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1rem;
}
.hours-card .table-openDoor th,
.hours-card .table-openDoor td {
  padding: 0.85rem 0;
  border-top: 1px solid var(--border);
  font-size: 0.95rem;
  color: var(--text);
  font-weight: 400;
}
.hours-card .table-openDoor tr:last-child th,
.hours-card .table-openDoor tr:last-child td {
  border-bottom: 1px solid var(--border);
}
.hours-card .table-openDoor th {
  text-align: left;
  letter-spacing: 0.08em;
  font-weight: 500;
  padding-right: 1.5rem;
}
.hours-card .table-openDoor td {
  text-align: right;
  font-variant-numeric: tabular-nums;
  color: var(--text-muted);
  white-space: nowrap;
}
/* compact opening hours on mobile so each day fits on one row */
@media (max-width: 560px) {
  .hours-card { padding: 1.6rem 1.4rem; }
  .hours-card .table-openDoor th,
  .hours-card .table-openDoor td { font-size: 0.82rem; padding: 0.65rem 0; }
  .hours-card .table-openDoor th { padding-right: 0.4rem; letter-spacing: 0.02em; }
  .hours-table li { font-size: 0.85rem; padding: 0.65rem 0; }
  .hours-table .time { white-space: nowrap; }
  .hours-table .day { letter-spacing: 0.02em; }
}
@media (max-width: 380px) {
  .hours-card .table-openDoor th,
  .hours-card .table-openDoor td { font-size: 0.75rem; }
}

.reservation-block h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
}
.reservation-block p { color: var(--text-muted); margin-bottom: 1.5rem; }
.tel-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  text-decoration: none;
  color: var(--text);
  transition: all 0.25s;
  box-shadow: var(--shadow-sm);
}
.tel-card:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  color: var(--text);
}
.tel-icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: rgba(212, 162, 74, 0.12);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.tel-icon svg { width: 22px; height: 22px; }
.tel-card .label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.2rem;
}
.tel-card .num {
  display: block;
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--accent);
  white-space: nowrap;
}
@media (max-width: 480px) {
  .tel-card { padding: 1.25rem; gap: 0.85rem; }
  .tel-card .num { font-size: 1.2rem; letter-spacing: 0.01em; }
  .tel-icon { width: 44px; height: 44px; }
  .tel-icon svg { width: 18px; height: 18px; }
}

/* ============== MAP ============== */
.map-section {
  background: var(--bg);
  padding: 0;
}
.map-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  min-height: 480px;
}
@media (max-width: 880px) { .map-grid { grid-template-columns: 1fr; } }

.map-info {
  background: var(--bg-2);
  padding: 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 880px) { .map-info { padding: 3rem 1.5rem; } }
.map-info h2 { font-size: clamp(1.8rem, 3vw, 2.5rem); }
.map-info-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
  display: grid;
  gap: 1.25rem;
}
.map-info-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--border);
}
.map-info-list li:last-child { border-bottom: none; }
.map-info-list .ico {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(212, 162, 74, 0.1);
  color: var(--accent);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.map-info-list .ico svg { width: 16px; height: 16px; }
.map-info-list .lab {
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.25rem;
}
.map-info-list .val {
  color: var(--text);
  font-size: 0.98rem;
}
.map-info-list a.val:hover { color: var(--accent); }

.map-frame {
  position: relative;
  min-height: 480px;
  height: 480px;
  background: var(--bg-3);
}
.map-grid .map-frame {
  height: auto;
  min-height: 480px;
}
.map-frame iframe {
  width: 100%; height: 100%;
  position: absolute;
  top: 0; left: 0;
  border: 0;
  filter: invert(0.92) hue-rotate(180deg) brightness(0.95) contrast(0.85) saturate(0.8);
}
[data-theme="light"] .map-frame iframe { filter: none; }

/* ============== FOOTER ============== */
.footer {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  padding: 4rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
@media (max-width: 880px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-grid > :first-child { grid-column: span 1; }
@media (min-width: 881px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr; }
}

.footer-brand img { height: 56px; width: auto; margin-bottom: 1rem; }
.footer-brand p {
  color: var(--text-muted);
  font-size: 0.9rem;
  max-width: 320px;
}
.footer h4 {
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.25rem;
  font-weight: 600;
}
.footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.7rem; }
.footer ul a, .footer ul li {
  color: var(--text-muted);
  font-size: 0.92rem;
  text-decoration: none;
}
.footer ul a:hover { color: var(--accent); }

.socials {
  display: flex;
  gap: 0.6rem;
  margin-top: 1rem;
}
.socials a {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted);
  transition: all 0.2s;
}
.socials a:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}
.socials svg { width: 16px; height: 16px; }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-dim);
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-hours .table-openDoor {
  width: 100%;
  border-collapse: collapse;
  margin-top: 0.5rem;
}
.footer-hours .table-openDoor th,
.footer-hours .table-openDoor td {
  padding: 0.45rem 0;
  font-size: 0.9rem;
  border-bottom: 1px solid var(--border);
  font-weight: 400;
}
.footer-hours .table-openDoor th {
  color: var(--text);
  font-weight: 500;
  text-align: left;
  padding-right: 1rem;
}
.footer-hours .table-openDoor td {
  color: var(--text-muted);
  text-align: right;
  white-space: nowrap;
}
.footer-hours .table-openDoor tr:last-child th,
.footer-hours .table-openDoor tr:last-child td {
  border-bottom: none;
}

.__majksiro_cr {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--text-dim);
  font-size: 0.8rem;
}

.__majksiro_cr img{height:15px;opacity:.89;margin:-2px 0 0 3px;background:#fff;padding:3px 5px;border-radius:5px}
.__majksiro_cr img:hover{filter:none;opacity:1}
@media (max-width: 768px) {
  .__majksiro_cr{text-align:center}
}
/* ============== COOKIE BANNER ============== */
.cookie-banner {
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  max-width: 560px;
  margin: 0 auto;
  background: var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg), var(--shadow-glow);
  z-index: 200;
  transform: translateY(150%);
  transition: transform 0.5s cubic-bezier(0.6,0,0.2,1);
}
.cookie-banner[hidden] { display: none; }
.cookie-banner.show { transform: translateY(0); }
.cookie-banner-inner {
  padding: 1.4rem 1.5rem 1.3rem;
  max-height: calc(100vh - 4rem);
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(212, 162, 74, 0.35) transparent;
}
.cookie-banner-inner::-webkit-scrollbar { width: 6px; }
.cookie-banner-inner::-webkit-scrollbar-track { background: transparent; }
.cookie-banner-inner::-webkit-scrollbar-thumb {
  background: rgba(212, 162, 74, 0.3);
  border-radius: 3px;
}
.cookie-banner-inner::-webkit-scrollbar-thumb:hover { background: rgba(212, 162, 74, 0.55); }
.cookie-banner h4 {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--text);
}
.cookie-banner .cookie-text {
  color: var(--text);
  font-size: 0.92rem;
  line-height: 1.45;
  margin-bottom: 0.4rem;
}
.cookie-banner .cookie-text :first-child { margin-top: 0; }
.cookie-banner .cookie-info {
  color: var(--text-muted);
  font-size: 0.85rem;
  line-height: 1.55;
  margin: 0 0 1rem;
}
.cookie-banner .cookie-info p:last-child { margin-bottom: 0; }

.cookie-details { margin: 0.5rem 0 1rem; }
.cookie-details summary {
  cursor: pointer;
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  list-style: none;
  padding: 0.4rem 0;
  user-select: none;
}
.cookie-details summary::-webkit-details-marker { display: none; }
.cookie-details summary::before {
  content: '▸';
  display: inline-block;
  margin-right: 0.4rem;
  transition: transform 0.2s ease;
}
.cookie-details[open] summary::before { transform: rotate(90deg); }
.cookie-details summary:hover { color: var(--accent-soft); }

.cookie-cats {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  padding: 0.6rem 0;
  border-top: 1px solid var(--border);
  margin-top: 0.4rem;
}
.cookie-cat {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  padding: 0.55rem 0.7rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}
.cookie-cat:hover { border-color: var(--border-strong); }
.cookie-cat input[type="checkbox"] {
  width: 18px; height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--accent);
  cursor: pointer;
}
.cookie-cat input[type="checkbox"]:disabled { cursor: not-allowed; opacity: 0.7; }
.cookie-cat strong {
  display: block;
  color: var(--text);
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 0.15rem;
}
.cookie-cat p {
  color: var(--text-muted);
  font-size: 0.78rem;
  line-height: 1.4;
  margin: 0;
}

.cookie-actions {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  justify-content: flex-end;
  padding-top: 0.4rem;
  border-top: 1px solid var(--border);
  margin-top: 0.5rem;
  padding-top: 1rem;
}
.cookie-actions .btn { padding: 0.6rem 1.1rem; font-size: 0.72rem; flex-shrink: 0; }
.cookie-actions .btn-sm { padding: 0.5rem 0.9rem; font-size: 0.7rem; }

@media (max-width: 520px) {
  .cookie-banner { left: 0.75rem; right: 0.75rem; bottom: 0.75rem; }
  .cookie-banner-inner { padding: 1.1rem 1.2rem 1rem; }
  .cookie-actions { justify-content: stretch; }
  .cookie-actions .btn { flex: 1 1 calc(50% - 0.3rem); }
  .cookie-actions [data-cookie-action="all"] { flex-basis: 100%; }
}

/* ============== SCROLL ANIMATIONS ============== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s cubic-bezier(0.2,0,0.2,1), transform 0.9s cubic-bezier(0.2,0,0.2,1);
}
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ============== PAGE HEADER (subpages) ============== */
.page-header {
  position: relative;
  padding: 12rem 0 1rem;
  text-align: center;
  overflow: hidden;
  background: var(--bg-2);
}
.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../assets/gallery/mural-detail.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.2;
  filter: blur(2px);
}
.page-header::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, var(--bg) 0%, transparent 30%, var(--bg) 100%);
}
.page-header > * { position: relative; z-index: 2; }
.page-header h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  margin: 0;
}
.page-header h1 .accent { color: var(--accent); font-style: italic; }
.page-header .crumbs {
  color: var(--text-muted);
  font-size: 0.78rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.page-header .crumbs a { color: var(--text-muted); }
.page-header .crumbs a:hover { color: var(--accent); }

/* ============== ABOUT PAGE EXTRAS ============== */
.story {
  background: var(--bg);
}
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
@media (max-width: 880px) { .story-grid { grid-template-columns: 1fr; } }
.story h2 { font-size: clamp(1.8rem, 3vw, 2.5rem); margin-bottom: 1rem; }
.story p { color: var(--text-muted); margin: 0 0 1.25rem; }
.story-img {
  position: sticky;
  top: 100px;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.story-img img { width: 100%; height: 100%; object-fit: cover; }

.timeline {
  background: var(--bg-2);
}
.timeline-list {
  max-width: 760px;
  margin: 0 auto;
  position: relative;
  padding-left: 2.5rem;
}
.timeline-list::before {
  content: '';
  position: absolute;
  left: 8px;
  top: 0; bottom: 0;
  width: 1px;
  background: var(--border-strong);
}
.tl-item {
  position: relative;
  padding-bottom: 3rem;
}
.tl-item:last-child { padding-bottom: 0; }
.tl-item::before {
  content: '';
  position: absolute;
  left: -2.5rem;
  top: 0.4rem;
  width: 17px; height: 17px;
  border-radius: 50%;
  background: var(--bg-2);
  border: 2px solid var(--accent);
}
.tl-year {
  font-family: var(--font-display);
  color: var(--accent);
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
  font-weight: 600;
}
.tl-item h3 {
  font-size: 1.4rem;
  margin: 0 0 0.5rem;
}
.tl-item p { color: var(--text-muted); margin: 0; }

.values {
  background: var(--bg);
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 880px) { .values-grid { grid-template-columns: 1fr; } }
.value-card {
  padding: 2.5rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: all 0.3s;
}
.value-card:hover {
  border-color: var(--border-strong);
  transform: translateY(-4px);
}
.value-num {
  font-family: var(--font-display);
  color: var(--accent);
  font-size: 2.5rem;
  line-height: 1;
  margin-bottom: 1rem;
  font-weight: 600;
}
.value-card h3 { font-size: 1.3rem; margin: 0 0 0.75rem; }
.value-card p { color: var(--text-muted); margin: 0; font-size: 0.95rem; }

/* ============== GALLERY PAGE ============== */
.gallery-page {
  background: var(--bg);
  padding: 4rem 0 6rem;
}
.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}
.filter-btn {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-muted);
  padding: 0.55rem 1.25rem;
  font: inherit;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.2s;
}
.filter-btn:hover { color: var(--text); border-color: var(--border-strong); }
.filter-btn.active {
  background: var(--accent);
  color: #0a0e14;
  border-color: var(--accent);
}

.masonry {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  grid-auto-rows: 240px;
}
@media (max-width: 880px) { .masonry { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .masonry { grid-template-columns: 1fr; } }
.masonry .g-item.tall { grid-row: span 2; }
.masonry .g-item.wide { grid-column: span 2; }
@media (max-width: 520px) {
  .masonry .g-item.tall, .masonry .g-item.wide { grid-row: span 1; grid-column: span 1; }
}

/* lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(5, 7, 10, 0.95);
  z-index: 300;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.lightbox.open { display: flex; animation: fade 0.3s; }
@keyframes fade { from { opacity: 0; } to { opacity: 1; } }
.lightbox img {
  max-width: 95vw;
  max-height: 90vh;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}
.lightbox-close {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  width: 44px; height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  width: 50px; height: 50px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox-nav.prev { left: 2rem; }
.lightbox-nav.next { right: 2rem; }
.lightbox-nav:hover { background: rgba(255,255,255,0.1); }

/* ============== CONTACT PAGE ============== */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 4rem;
}
@media (max-width: 880px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all 0.3s;
}
.contact-card:hover {
  border-color: var(--border-strong);
  transform: translateY(-4px);
}
.contact-card .ico {
  width: 60px; height: 60px;
  margin: 0 auto 1.25rem;
  border-radius: 50%;
  background: rgba(212, 162, 74, 0.1);
  color: var(--accent);
  display: flex; align-items: center; justify-content: center;
}
.contact-card .ico svg { width: 24px; height: 24px; }
.contact-card .lab {
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.6rem;
}
.contact-card .val {
  font-family: var(--font-display);
  color: var(--text);
  font-size: 1.25rem;
  font-weight: 600;
}
.contact-card a.val:hover { color: var(--accent); }

/* Tweaks */
.tweak-row {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.tweak-swatch {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
}
.tweak-swatch.active {
  border-color: var(--text);
  transform: scale(1.1);
}
.tweak-swatch[data-val="gold"] { background: #d4a24a; }
.tweak-swatch[data-val="copper"] { background: #c47a3d; }
.tweak-swatch[data-val="green"] { background: #6b9a5e; }

/* utilities */
.text-center { text-align: center; }
.mt-4 { margin-top: 4rem; }

/* FAQ Accordion */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question {
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.5rem 0; cursor: pointer; font-family: var(--font-display);
  font-size: 1.1rem; font-weight: 600; color: var(--text);
  transition: color 0.2s;
}
.faq-question:hover { color: var(--accent); }
.faq-question::after {
  content: '+'; font-size: 1.5rem; color: var(--accent);
  transition: transform 0.3s;
}
.faq-item.open .faq-question::after { content: '\2212'; }
.faq-answer {
  max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s ease;
  color: var(--text-muted); font-size: 0.95rem; line-height: 1.7;
}
.faq-item.open .faq-answer { max-height: 500px; padding-bottom: 1.5rem; }

/* Contact Form */
.contact-form { max-width: 680px; margin: 0 auto; }
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block; font-size: 0.72rem; letter-spacing: 0.25em;
  text-transform: uppercase; color: var(--text-muted); margin-bottom: 0.5rem;
}
.form-control {
  width: 100%; padding: 0.9rem 1.25rem; background: var(--surface);
  border: 1px solid var(--border); border-radius: var(--radius);
  color: var(--text); font-family: var(--font-body); font-size: 0.95rem;
  transition: border-color 0.2s;
}
.form-control:focus { outline: none; border-color: var(--accent); }
select.form-control {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23a8a39a' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1.25rem center;
  padding-right: 3rem;
  cursor: pointer;
}
select.form-control option {
  background: var(--surface);
  color: var(--text);
}
textarea.form-control { min-height: 150px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }
.form-success {
  text-align: center; padding: 2rem; background: rgba(95,201,126,0.1);
  border: 1px solid rgba(95,201,126,0.3); border-radius: var(--radius-lg);
  color: #5fc97e; margin-bottom: 2rem;
}
