/* ============================================================
   FÉLÚTON BISZTRÓ — style.css  (magazine edition)
   ============================================================ */

/* ── 1. RESET & VARIABLES ─────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --cream:   #F5EFE3;
  --cream-d: #EDE4D3;
  --dark:    #1A2218;
  --dark2:   #243022;
  --gold:    #B8965A;
  --gold-l:  #CCA96B;
  --green:   #4A6741;
  --muted:   #6B7A68;
  --white:   #FAFAF7;

  --ff-display: 'DM Serif Display', serif;
  --ff-body:    'DM Sans', sans-serif;
  --nav-h:      72px;
  --ease-out:   cubic-bezier(.16, 1, .3, 1);
}

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  font-family: var(--ff-body);
  background: var(--cream);
  color: var(--dark);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body.no-scroll { overflow: hidden; }

img { display: block; max-width: 100%; }
a   { text-decoration: none; color: inherit; }
ul  { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── 2. LOADER ────────────────────────────────────────────── */
#loader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--dark);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 28px;
  transition: opacity .6s var(--ease-out), visibility .6s;
}
#loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }

.ld-logo {
  width: 120px;
  animation: ldPulse 1.4s ease-in-out infinite;
}
@keyframes ldPulse {
  0%, 100% { opacity: .4; transform: scale(.96); }
  50%       { opacity: 1;  transform: scale(1); }
}

.ld-bar {
  width: 160px; height: 2px;
  background: rgba(255,255,255,.12);
  border-radius: 2px;
  overflow: hidden;
}
.ld-bar-fill {
  height: 100%; width: 0%;
  background: var(--gold);
  animation: ldFill 1.6s var(--ease-out) forwards;
}
@keyframes ldFill { to { width: 100%; } }

/* ── 3. NAV ───────────────────────────────────────────────── */
#nav {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 clamp(20px, 4vw, 56px);
  z-index: 900;
  transition: background .35s, box-shadow .35s;
}
#nav.scrolled {
  background: var(--dark);
  box-shadow: 0 2px 24px rgba(0,0,0,.28);
}

.n-logo img { height: 44px; width: auto; }

.n-links {
  display: flex; align-items: center; gap: 32px;
}
.n-links a {
  font-size: .875rem; font-weight: 500; letter-spacing: .03em;
  color: var(--white); opacity: .85;
  transition: opacity .2s, color .2s;
}
.n-links a:hover,
.n-links a.active { opacity: 1; color: var(--gold-l); }

.n-cta {
  padding: 9px 22px;
  border: 1.5px solid var(--gold);
  border-radius: 3px;
  color: var(--gold) !important;
  opacity: 1 !important;
  font-size: .8125rem !important;
  letter-spacing: .07em !important;
  text-transform: uppercase;
  transition: background .2s, color .2s !important;
}
.n-cta:hover { background: var(--gold); color: var(--dark) !important; }

/* Hamburger */
.n-burger {
  display: none;
  flex-direction: column; gap: 5px;
  width: 36px; padding: 6px 0;
  z-index: 1001;
}
.n-burger span {
  display: block; height: 1.5px;
  background: var(--white);
  border-radius: 2px;
  transition: transform .35s var(--ease-out), opacity .25s, width .25s;
  transform-origin: center;
}
.n-burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.n-burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.n-burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ── 4. MOBILE MENU OVERLAY ───────────────────────────────── */
.mob-menu {
  position: fixed; inset: 0;
  background: var(--dark);
  z-index: 950;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 0;
  clip-path: circle(0% at calc(100% - 52px) 36px);
  transition: clip-path .55s var(--ease-out);
  pointer-events: none;
}
.mob-menu.open {
  clip-path: circle(150% at calc(100% - 52px) 36px);
  pointer-events: all;
}

.mob-links {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  margin-bottom: 32px;
}
.mob-links li { overflow: hidden; }
.mob-nav-link {
  display: block;
  font-family: var(--ff-display);
  font-size: clamp(28px, 6vw, 40px);
  color: var(--white);
  padding: 8px 0;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .4s, transform .4s var(--ease-out), color .2s;
}
.mob-menu.open .mob-nav-link {
  opacity: 1; transform: translateY(0);
}
.mob-menu.open .mob-links li:nth-child(1) .mob-nav-link { transition-delay: .15s; }
.mob-menu.open .mob-links li:nth-child(2) .mob-nav-link { transition-delay: .22s; }
.mob-menu.open .mob-links li:nth-child(3) .mob-nav-link { transition-delay: .29s; }
.mob-menu.open .mob-links li:nth-child(4) .mob-nav-link { transition-delay: .36s; }
.mob-nav-link:hover { color: var(--gold-l); }

.mob-cta-wrap { margin-bottom: 24px; }
.mob-cta {
  font-family: var(--ff-body) !important;
  font-size: .875rem !important;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 12px 32px;
  border: 1.5px solid var(--gold);
  border-radius: 3px;
  color: var(--gold) !important;
  transition-delay: .42s !important;
}
.mob-menu.open .mob-cta-wrap .mob-nav-link {
  opacity: 1; transform: translateY(0);
  transition-delay: .42s;
}

.mob-foot {
  position: absolute; bottom: 32px;
  font-size: .75rem; color: var(--muted); letter-spacing: .06em;
  opacity: 0;
  transition: opacity .4s .5s;
}
.mob-menu.open .mob-foot { opacity: 1; }

/* ── 5. HERO ──────────────────────────────────────────────── */
.hero {
  height: 100svh; position: relative; overflow: hidden;
  display: flex; align-items: flex-end;
  padding: clamp(40px, 6vw, 80px);
}
.hero-bg {
  position: absolute; inset: -15%;
  background-size: cover; background-position: center;
  will-change: transform;
}
.hero-ov {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(26,34,24,.15) 0%, rgba(26,34,24,.45) 40%, rgba(26,34,24,.82) 100%);
}
.hero-cnt {
  position: relative; z-index: 2;
  max-width: 860px;
}

.hero-title {
  font-family: var(--ff-display);
  font-size: clamp(52px, 10vw, 108px);
  color: var(--white);
  line-height: .95;
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(32px);
}
.hero-title em { font-style: italic; color: var(--gold-l); }

.hero-sub {
  font-size: clamp(14px, 2vw, 17px);
  color: rgba(255,255,255,.65);
  font-weight: 300;
  max-width: 500px;
  line-height: 1.7;
  margin-bottom: 36px;
  opacity: 0;
  transform: translateY(20px);
}

.hero-btns {
  display: flex; gap: 12px; flex-wrap: wrap;
  opacity: 0; transform: translateY(18px);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 13px 32px;
  font-size: .8125rem; font-weight: 600;
  letter-spacing: .09em; text-transform: uppercase;
  border-radius: 3px;
  transition: background .22s, color .22s, border-color .22s, transform .22s;
}
.btn:hover { transform: translateY(-2px); }
.btn-gold {
  display: inline-block; background: var(--gold); color: var(--dark);
  padding: 14px 36px; font-size: 11px; letter-spacing: 3px;
  text-transform: uppercase; font-weight: 500;
  transition: all .3s;
  border: none;
}
.btn-gold:hover { background: var(--gold-l); transform: translateY(-2px); }
.btn-outline {
  display: inline-block; border: 1px solid rgba(255,255,255,.45);
  color: var(--white); padding: 14px 36px;
  font-size: 11px; letter-spacing: 3px; text-transform: uppercase;
  transition: all .3s;
  background: transparent;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.btn-dark {
  background: var(--dark); color: var(--white);
  border: 1.5px solid var(--dark);
}
.btn-dark:hover { background: var(--dark2); }

/* ── 6. MARQUEE ───────────────────────────────────────────── */
.marquee-band {
  background: var(--dark);
  padding: 18px 0; overflow: hidden;
}
.marquee-track {
  display: flex; white-space: nowrap;
  animation: marqueeScroll 26s linear infinite;
}
.marquee-track span {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: clamp(1rem, 2.2vw, 1.4rem);
  color: var(--gold-l);
  padding-right: 48px;
  opacity: .88;
}
@keyframes marqueeScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── 7. SECTION COMMONS ───────────────────────────────────── */
.section { padding: clamp(64px, 8vw, 112px) clamp(20px, 5vw, 80px); }
.section-dark { background: var(--dark); color: var(--white); }
.section-cream { background: var(--cream); }
.section-cream-d { background: var(--cream-d); }

.label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  display: block;
}

.sec-title {
  font-family: var(--ff-display);
  font-size: clamp(32px, 5vw, 52px);
  line-height: 1.15;
  margin-bottom: 20px;
}

.sec-sub {
  font-size: clamp(.9rem, 1.6vw, 1.05rem);
  color: var(--muted);
  line-height: 1.75;
  max-width: 560px;
}

/* ── 8. MAGAZINE COMPONENTS ───────────────────────────────── */

/* Full-bleed image section */
.mag-full { width: 100%; height: 60vh; overflow: hidden; }
.mag-full img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Magazine split: 50/50, image + text side by side */
.mag-split { display: grid; grid-template-columns: 1fr 1fr; min-height: 70vh; }
.mag-split-img { overflow: hidden; }
.mag-split-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .9s ease; }
.mag-split-img:hover img { transform: scale(1.04); }
.mag-split-text {
  display: flex; flex-direction: column; justify-content: center;
  padding: clamp(40px, 6vw, 100px);
  background: var(--cream);
}
.mag-split-text.dark { background: var(--dark); }
.mag-split-text.dark * { color: var(--white); }
.mag-split-text.dark .sec-sub { color: rgba(250,250,247,.65); }
.mag-split-text.dark .label { color: var(--gold); }

/* Image with overlay text */
.mag-overlay { position: relative; overflow: hidden; }
.mag-overlay img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .9s ease; }
.mag-overlay:hover img { transform: scale(1.03); }
.mag-overlay-cnt {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: clamp(24px, 4vw, 56px);
  background: linear-gradient(to top, rgba(26,34,24,.92) 0%, rgba(26,34,24,.1) 60%);
}

/* 3-col magazine strip */
.mag-trio { display: grid; grid-template-columns: repeat(3,1fr); }
.mag-trio-item { position: relative; overflow: hidden; height: 50vh; }
.mag-trio-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .9s ease; }
.mag-trio-item:hover img { transform: scale(1.05); }
.mag-trio-cnt {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 28px;
  background: linear-gradient(to top, rgba(26,34,24,.88), transparent);
}
.mag-trio-cnt .trio-title {
  font-family: var(--ff-display);
  font-size: clamp(20px, 2.4vw, 26px);
  color: var(--white);
  margin-bottom: 6px;
}
.mag-trio-cnt .trio-sub {
  font-size: .8125rem;
  color: rgba(250,250,247,.7);
  letter-spacing: .03em;
}

/* Large editorial number */
.editorial-num {
  font-family: var(--ff-display);
  font-size: clamp(80px, 12vw, 160px);
  color: rgba(184,150,90,.12);
  line-height: 1;
  position: absolute;
  top: -20px; right: 20px;
}

/* Gallery masonry for magazine */
.gal-masonry { columns: 3; column-gap: 6px; }
.gal-masonry-item { break-inside: avoid; margin-bottom: 6px; overflow: hidden; cursor: zoom-in; }
.gal-masonry-item img { width: 100%; display: block; transition: transform .8s ease; }
.gal-masonry-item:hover img { transform: scale(1.04); }

/* ── Menu scattered photos ── */
.menu-scatter {
  padding: 64px clamp(20px,5vw,72px) 80px;
  background: var(--cream);
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: flex-end;
  justify-content: center;
}
.ms-img { overflow: hidden; flex-shrink: 0; }
.ms-img img { display: block; height: var(--h, 200px); width: auto; max-width: 46vw; transition: transform .7s cubic-bezier(.25,.46,.45,.94); }
.ms-img:hover img { transform: scale(1.05); }
@media(max-width:768px){
  .menu-scatter { gap: 8px; padding: 32px 12px 48px; }
  .ms-img img { height: calc(var(--h, 200px) * .58) !important; max-width: 44vw; }
}

/* Magazine gallery teaser grid */
.mag-gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: 300px 280px;
  gap: 6px;
}
.mag-gal-item { overflow: hidden; cursor: zoom-in; }
.mag-gal-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .8s ease; }
.mag-gal-item:hover img { transform: scale(1.04); }
.mag-gal-item:nth-child(1) { grid-column: 1 / 5;  grid-row: 1; }
.mag-gal-item:nth-child(2) { grid-column: 5 / 9;  grid-row: 1; }
.mag-gal-item:nth-child(3) { grid-column: 9 / 13; grid-row: 1; }
.mag-gal-item:nth-child(4) { grid-column: 1 / 7;  grid-row: 2; }
.mag-gal-item:nth-child(5) { grid-column: 7 / 10; grid-row: 2; }
.mag-gal-item:nth-child(6) { grid-column: 10 / 13; grid-row: 2; }

/* ── 9. QUOTE BAND ────────────────────────────────────────── */
.quote-band {
  background: var(--cream-d);
  padding: clamp(72px, 9vw, 120px) clamp(20px, 8vw, 120px);
  text-align: center;
  border-top: 1px solid var(--gold);
  border-bottom: 1px solid var(--gold);
}
.quote-text {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: clamp(26px, 4.5vw, 52px);
  line-height: 1.3;
  color: var(--dark);
  max-width: 900px;
  margin: 0 auto;
}
.bq-ln {
  display: block;
  opacity: 0; transform: translateY(14px);
  transition: opacity .55s var(--ease-out), transform .55s var(--ease-out);
}
.bq-ln.vis { opacity: 1; transform: translateY(0); }
.bq-ln:nth-child(2) { transition-delay: .12s; }
.bq-ln:nth-child(3) { transition-delay: .24s; }
.quote-attr {
  margin-top: 28px;
  font-size: .8125rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--gold);
}

/* ── 10. COUNTERS ─────────────────────────────────────────── */
.about-counters {
  display: flex; gap: 36px; flex-wrap: wrap; margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--gold);
}
.about-counter .num {
  font-family: var(--ff-display);
  font-size: clamp(36px, 5vw, 52px);
  color: var(--gold);
  line-height: 1;
}
.about-counter .num-unit {
  font-family: var(--ff-display);
  font-size: clamp(18px, 2.5vw, 26px);
  color: var(--gold);
}
.about-counter .num-label {
  font-size: .75rem; letter-spacing: .1em; text-transform: uppercase;
  color: var(--muted); margin-top: 6px;
}

/* ── 11. MENU PAGE ────────────────────────────────────────── */
.menu-tabs {
  display: flex; gap: 4px; flex-wrap: wrap;
  margin-bottom: 40px;
}
.tab-btn {
  padding: 10px 22px;
  font-family: var(--ff-body); font-size: .8125rem;
  font-weight: 500; letter-spacing: .06em; text-transform: uppercase;
  border: 1.5px solid var(--cream-d);
  border-radius: 3px;
  color: var(--muted);
  background: transparent;
  transition: background .2s, color .2s, border-color .2s;
}
.tab-btn.active {
  background: var(--gold); border-color: var(--gold);
  color: var(--dark);
}
.tab-btn:hover:not(.active) { border-color: var(--gold); color: var(--dark); }

.tab-panel { display: none; }
.tab-panel.active { display: block; }

.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--cream-d);
  border: 1px solid var(--cream-d);
  border-radius: 6px; overflow: hidden;
}
.m-item {
  display: flex; justify-content: space-between; align-items: flex-start;
  padding: 20px 24px;
  background: var(--white);
  gap: 16px;
  transition: background .2s;
}
.m-item:hover { background: var(--cream); }
.m-item-info { flex: 1; }
.m-item-name {
  font-family: var(--ff-display);
  font-size: 1.05rem; color: var(--dark);
  margin-bottom: 4px;
}
.m-item-desc { font-size: .8rem; color: var(--muted); line-height: 1.5; }
.m-item-price {
  font-family: var(--ff-display);
  font-size: 1.05rem; color: var(--gold);
  white-space: nowrap;
}

/* Featured strip */
.feat-strip {
  display: grid; grid-template-columns: repeat(3,1fr);
  height: 40vh; min-height: 200px;
}
.feat-strip-img { overflow: hidden; }
.feat-strip-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease-out); }
.feat-strip-img:hover img { transform: scale(1.04); }

/* ── 12. GALLERY ──────────────────────────────────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 220px;
  gap: 8px;
  max-width: 1400px; margin: 0 auto;
}
.g-item {
  overflow: hidden; cursor: pointer;
  position: relative;
}
.g-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease-out); }
.g-item:hover img { transform: scale(1.05); }
.g-item::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(20,26,18,0);
  transition: background .3s;
}
.g-item:hover::after { background: rgba(20,26,18,.18); }

/* Bento placement */
.g-item:nth-child(1)  { grid-column: 1 / 6;  grid-row: 1; }
.g-item:nth-child(2)  { grid-column: 6 / 9;  grid-row: 1; }
.g-item:nth-child(3)  { grid-column: 9 / 13; grid-row: 1; }
.g-item:nth-child(4)  { grid-column: 1 / 4;  grid-row: 2; }
.g-item:nth-child(5)  { grid-column: 4 / 8;  grid-row: 2; }
.g-item:nth-child(6)  { grid-column: 8 / 13; grid-row: 2; }
.g-item:nth-child(7)  { grid-column: 1 / 7;  grid-row: 3; }
.g-item:nth-child(8)  { grid-column: 7 / 13; grid-row: 3; }

/* Gold divider */
.gold-divider {
  display: flex; align-items: center; gap: 24px;
  padding: clamp(40px, 5vw, 64px) clamp(20px, 5vw, 80px);
  background: var(--dark);
}
.gold-divider::before,
.gold-divider::after {
  content: ''; flex: 1; height: 1px; background: var(--gold);
}
.gold-divider-text {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: clamp(18px, 3vw, 28px);
  color: var(--gold-l);
  white-space: nowrap;
}

/* ── 13. LIGHTBOX ─────────────────────────────────────────── */
#lightbox {
  position: fixed; inset: 0; z-index: 9000;
  background: rgba(20,26,18,.96);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden;
  transition: opacity .3s, visibility .3s;
}
#lightbox.open { opacity: 1; visibility: visible; }
#lightbox img {
  max-width: 90vw; max-height: 88vh;
  object-fit: contain;
  transform: scale(.94);
  transition: transform .35s var(--ease-out);
}
#lightbox.open img { transform: scale(1); }

.lb-close {
  position: absolute; top: 24px; right: 28px;
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  color: var(--white);
  transition: background .2s;
}
.lb-close:hover { background: rgba(255,255,255,.22); }
.lb-close svg { width: 18px; height: 18px; stroke: currentColor; stroke-width: 2; fill: none; }

.lb-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.1);
  border-radius: 50%; color: var(--white);
  transition: background .2s;
}
.lb-nav:hover { background: rgba(255,255,255,.22); }
.lb-nav svg { width: 20px; height: 20px; stroke: currentColor; stroke-width: 2; fill: none; }
.lb-prev { left: 20px; }
.lb-next { right: 20px; }

/* ── 14. EVENTS PAGE ──────────────────────────────────────── */
.prog-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 28px; max-width: 1100px; margin: 40px auto 0;
}
.prog-item {
  display: flex; gap: 20px; align-items: flex-start;
  padding: 28px 32px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 4px;
  transition: border-color .3s, background .3s;
}
.prog-item:hover {
  border-color: var(--gold);
  background: rgba(184,150,90,.05);
}
.prog-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  color: var(--gold);
}
.prog-icon svg { width: 100%; height: 100%; fill: none; stroke: currentColor; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.prog-title {
  font-family: var(--ff-display);
  font-size: clamp(17px, 2vw, 21px);
  color: var(--white); margin-bottom: 8px;
}
.prog-desc { font-size: .875rem; color: var(--muted); line-height: 1.7; }

/* CTA band events */
.ev-cta-band {
  background: var(--dark);
  padding: clamp(64px, 8vw, 112px) clamp(20px, 5vw, 80px);
  text-align: center;
  border-top: 1px solid rgba(184,150,90,.25);
}
.ev-cta-band .sec-title { color: var(--white); margin-bottom: 20px; font-size: clamp(36px, 6vw, 64px); }

.ev-cta-contacts {
  display: flex; gap: 40px; justify-content: center; flex-wrap: wrap;
  margin-bottom: 32px;
}
.ev-cta-contact {
  display: flex; align-items: center; gap: 10px;
  font-size: clamp(14px, 2vw, 18px);
  color: var(--gold-l);
}
.ev-cta-contact svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 1.8; flex-shrink: 0; }

/* ── 15. CTA BAND ─────────────────────────────────────────── */
.cta-band {
  background: var(--dark);
  padding: clamp(56px, 7vw, 96px) 24px;
  text-align: center;
}
.cta-band .sec-title { color: var(--white); margin-bottom: 12px; }
.cta-band .sec-sub { color: var(--muted); margin: 0 auto 32px; }

/* ── 16. CONTACT ──────────────────────────────────────────── */
.contact-split {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 72px);
  max-width: 1100px; margin: 0 auto;
}
.contact-info { padding-top: 8px; }
.contact-info .sec-title { margin-bottom: 24px; }

.info-row {
  display: flex; gap: 14px; align-items: flex-start;
  margin-bottom: 20px;
}
.info-icon {
  width: 22px; height: 22px; flex-shrink: 0; margin-top: 2px;
  color: var(--gold);
}
.info-icon svg { width: 100%; height: 100%; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.info-text { font-size: .9375rem; line-height: 1.65; color: var(--dark); }
.info-text a { color: var(--green); }
.info-text a:hover { color: var(--gold); }

.hours-table { margin-top: 4px; }
.hours-row {
  display: flex; gap: 12px; font-size: .875rem;
  color: var(--dark); padding: 3px 0;
}
.hours-day { min-width: 120px; color: var(--muted); }

/* Form */
.contact-form-wrap {
  background: var(--dark);
  border-radius: 8px;
  padding: clamp(28px, 4vw, 48px);
}
.contact-form-wrap .sec-title { color: var(--white); margin-bottom: 28px; font-size: clamp(22px, 3vw, 30px); }

.form-row { margin-bottom: 18px; }
.form-row label {
  display: block;
  font-size: .75rem; font-weight: 600;
  letter-spacing: .07em; text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 7px;
}
.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 4px;
  padding: 12px 16px;
  font-family: var(--ff-body); font-size: .9375rem;
  color: var(--white);
  outline: none;
  transition: border-color .2s;
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus { border-color: var(--gold); }
.form-row select option { background: var(--dark); }
.form-row textarea { resize: vertical; min-height: 100px; }
.form-2col { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

.form-submit {
  width: 100%;
  padding: 14px;
  background: var(--gold); color: var(--dark);
  font-family: var(--ff-body); font-size: .8125rem;
  font-weight: 700; letter-spacing: .09em; text-transform: uppercase;
  border-radius: 4px;
  margin-top: 6px;
  transition: background .2s, transform .2s;
}
.form-submit:hover { background: var(--gold-l); transform: translateY(-2px); }

/* ── 17. FOOTER ───────────────────────────────────────────── */
footer {
  background: var(--dark);
  border-top: 1px solid rgba(255,255,255,.06);
}
.ft-in {
  max-width: 1300px; margin: 0 auto;
  padding: clamp(48px, 6vw, 80px) clamp(20px, 4vw, 56px) 0;
  position: relative;
}
.ft-mascot {
  position: absolute; right: clamp(20px, 4vw, 56px); bottom: 0;
  width: clamp(100px, 12vw, 160px);
  opacity: .18;
  pointer-events: none;
}
.ft-mascot img { width: 100%; }

.ft-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: clamp(24px, 4vw, 56px);
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.ft-logo img { height: 40px; margin-bottom: 16px; }
.ft-about { font-size: .875rem; color: var(--muted); line-height: 1.7; max-width: 280px; }
.ft-col-h {
  font-size: .75rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 16px;
}
.ft-links { display: flex; flex-direction: column; gap: 10px; }
.ft-links a, .ft-links li {
  font-size: .875rem; color: var(--muted);
  transition: color .2s;
}
.ft-links a:hover { color: var(--white); }

.ft-bot {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
  padding: 20px 0 24px;
}
.ft-copy { font-size: .8125rem; color: rgba(107,122,104,.6); }
.ft-legal { display: flex; gap: 20px; }
.ft-legal a {
  font-size: .8125rem; color: rgba(107,122,104,.6);
  transition: color .2s;
}
.ft-legal a:hover { color: var(--muted); }

/* ── 18. PAGE HERO (subpages) ─────────────────────────────── */
.page-hero {
  position: relative; height: 40svh; min-height: 280px;
  display: flex; align-items: flex-end;
  overflow: hidden;
  padding: clamp(32px, 5vw, 64px) clamp(20px, 5vw, 80px);
}
.page-hero .hero-bg { inset: -10%; }
.page-hero-ov {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(26,34,24,.1) 0%, rgba(26,34,24,.65) 100%);
}
.page-hero-cnt {
  position: relative; z-index: 2;
  max-width: 700px;
}
.page-hero-title {
  font-family: var(--ff-display);
  font-size: clamp(40px, 7vw, 80px);
  color: var(--white); line-height: .95;
  margin-bottom: 12px;
}
.page-hero-title em { font-style: italic; color: var(--gold-l); }
.page-hero-sub {
  font-size: clamp(.875rem, 2vw, 1.1rem);
  color: rgba(250,250,247,.68);
  letter-spacing: .04em;
}

/* ── 19. SCROLL REVEAL ────────────────────────────────────── */
.rv, .rvl, .rvr {
  opacity: 0;
  transition: opacity .65s var(--ease-out), transform .65s var(--ease-out);
}
.rv  { transform: translateY(28px); }
.rvl { transform: translateX(-28px); }
.rvr { transform: translateX(28px); }
.rv.in, .rvl.in, .rvr.in {
  opacity: 1; transform: translate(0, 0);
}

/* ── 20. RESPONSIVE ───────────────────────────────────────── */

@media (max-width: 1100px) {
  .ft-top { grid-template-columns: 1fr 1fr; }
  .mag-gallery-grid {
    grid-template-columns: repeat(6,1fr);
    grid-template-rows: 240px 240px 240px;
  }
  .mag-gal-item:nth-child(1) { grid-column: 1 / 4; grid-row: 1; }
  .mag-gal-item:nth-child(2) { grid-column: 4 / 7; grid-row: 1; }
  .mag-gal-item:nth-child(3) { grid-column: 1 / 4; grid-row: 2; }
  .mag-gal-item:nth-child(4) { grid-column: 4 / 7; grid-row: 2; }
  .mag-gal-item:nth-child(5) { grid-column: 1 / 4; grid-row: 3; }
  .mag-gal-item:nth-child(6) { grid-column: 4 / 7; grid-row: 3; }
  .prog-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .n-links { display: none; }
  .n-burger { display: flex; }

  .hero { padding: clamp(24px, 5vw, 48px); align-items: flex-end; }
  .hero-title { font-size: clamp(42px, 10vw, 72px); }

  .mag-split { grid-template-columns: 1fr; }
  .mag-split-img { height: 55vw; }
  .mag-trio { grid-template-columns: 1fr; }
  .mag-trio-item { height: 60vw; }
  .gal-masonry { columns: 2; }

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

  .feat-strip { grid-template-columns: 1fr; height: auto; }
  .feat-strip-img { height: 220px; }

  .gallery-grid {
    grid-template-columns: repeat(2,1fr);
    grid-auto-rows: 180px;
  }
  .g-item { grid-column: auto !important; grid-row: auto !important; }

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

  .contact-split { grid-template-columns: 1fr; }
  .form-2col { grid-template-columns: 1fr; }

  .ft-top { grid-template-columns: 1fr 1fr; }
  .ft-mascot { display: none; }
  .ft-bot { flex-direction: column; align-items: flex-start; }

  .mag-gallery-grid { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .mag-gal-item { grid-column: auto !important; grid-row: auto !important; height: 200px; }
}

@media (max-width: 400px) {
  .gal-masonry { columns: 1; }
  .hero-btns { flex-direction: column; align-items: flex-start; }
  .menu-tabs { gap: 6px; }
  .tab-btn { padding: 8px 14px; font-size: .75rem; }
  .ft-top { grid-template-columns: 1fr; }
  .ev-cta-contacts { flex-direction: column; align-items: center; gap: 16px; }
}
