/* =====================================================================
   PULSE — Nightclub & Live Venue Website Template
   Plain HTML5 + CSS3 + vanilla JS. No frameworks. No build tools.
   ---------------------------------------------------------------------
   REBRAND: To rebrand, edit the CSS variables in :root below.
   Change --magenta, --cyan, --bg and the fonts. Replace "Pulse" in the
   HTML files + logo. Swap the loremflickr / pravatar image URLs for
   your own photography.
   ===================================================================== */

/* ---------- DESIGN TOKENS ---------- */
:root {
  /* Colors — dark neon palette */
  --bg:          #08080c;   /* near-black background             */
  --bg-soft:     #0e0e15;   /* slightly lifted panel             */
  --bg-card:     #13131d;   /* card surface                      */
  --magenta:     #ec4899;   /* neon magenta (primary)            */
  --magenta-dk:  #be2e74;   /* deeper magenta for hovers         */
  --cyan:        #22d3ee;   /* neon cyan (secondary)             */
  --cyan-dk:     #0ea5c4;   /* deeper cyan                       */
  --violet:      #a855f7;   /* supporting violet                 */
  --ink:         #f5f3ff;   /* near-white text                   */
  --muted:       #a3a0b8;   /* muted lavender-grey text          */
  --muted-soft:  #6f6c86;   /* dimmer muted                      */
  --white:       #ffffff;
  --line:        rgba(255,255,255,.10);   /* hairline border     */
  --line-soft:   rgba(255,255,255,.06);

  /* Typography */
  --font-head: "Sora", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;

  /* Layout */
  --maxw: 1180px;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow-sm: 0 4px 18px rgba(0,0,0,.45);
  --shadow-md: 0 16px 44px rgba(0,0,0,.55);
  --shadow-lg: 0 28px 70px rgba(0,0,0,.65);
  --glow-magenta: 0 0 28px rgba(236,72,153,.55);
  --glow-cyan:    0 0 28px rgba(34,211,238,.50);
  --header-h: 76px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
}
img, svg { 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; }

h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.12; font-weight: 700; color: var(--ink); letter-spacing: -0.01em; }
h1 { font-size: clamp(2.4rem, 5.4vw, 4rem); }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.8rem); }
h3 { font-size: 1.3rem; }
p  { color: var(--muted); }

/* ---------- LAYOUT HELPERS ---------- */
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }
.section--soft { background: var(--bg-soft); }
.text-center { text-align: center; }
.eyebrow {
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.74rem;
  font-weight: 600;
  color: var(--cyan);
  margin-bottom: 14px;
  display: inline-block;
}
.section-head { max-width: 700px; margin: 0 auto 56px; }
.section-head p { margin-top: 14px; font-size: 1.05rem; }
.lead { font-size: 1.14rem; color: var(--muted); }
.gradient-text {
  background: linear-gradient(100deg, var(--magenta) 0%, var(--violet) 45%, var(--cyan) 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 14px 28px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 50px;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s, color .25s, border-color .25s;
  white-space: nowrap;
}
.btn--primary { background: linear-gradient(100deg, var(--magenta), var(--magenta-dk)); color: #fff; box-shadow: var(--glow-magenta); }
.btn--primary:hover { transform: translateY(-3px); box-shadow: 0 0 40px rgba(236,72,153,.8); }
.btn--cyan { background: linear-gradient(100deg, var(--cyan), var(--cyan-dk)); color: #04141a; box-shadow: var(--glow-cyan); }
.btn--cyan:hover { transform: translateY(-3px); box-shadow: 0 0 40px rgba(34,211,238,.8); }
.btn--ghost { background: transparent; color: var(--ink); border: 1.5px solid var(--line); }
.btn--ghost:hover { border-color: var(--cyan); color: var(--cyan); transform: translateY(-3px); box-shadow: var(--glow-cyan); }
.btn--light { background: var(--white); color: #0c0c14; }
.btn--light:hover { transform: translateY(-3px); box-shadow: 0 14px 36px rgba(255,255,255,.25); }
.btn--outline-light { border: 1.5px solid rgba(255,255,255,.4); color: var(--white); }
.btn--outline-light:hover { background: var(--white); color: #0c0c14; transform: translateY(-3px); }

/* =====================================================================
   HEADER (shared, sticky)
   ===================================================================== */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(8, 8, 12, 0.72);
  backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid var(--line-soft);
  transition: box-shadow .3s, background .3s, border-color .3s;
}
.site-header.scrolled { box-shadow: var(--shadow-sm); background: rgba(8,8,12,.92); border-color: var(--line); }
.nav {
  display: flex; align-items: center; justify-content: space-between;
  height: var(--header-h);
}
.logo { display: flex; align-items: center; gap: 11px; font-family: var(--font-head); font-weight: 700; font-size: 1.3rem; color: var(--ink); }
.logo-mark {
  width: 42px; height: 42px; border-radius: 12px;
  display: grid; place-items: center; font-size: 1.35rem;
  background: linear-gradient(135deg, var(--magenta) 0%, var(--violet) 60%, var(--cyan) 100%);
  box-shadow: var(--glow-magenta);
}
.logo span small { display: block; font-family: var(--font-body); font-weight: 500; font-size: .62rem; letter-spacing: .26em; text-transform: uppercase; color: var(--cyan); margin-top: -1px; }

.nav-menu { display: flex; align-items: center; gap: 6px; }
.nav-menu a {
  font-family: var(--font-head); font-weight: 500; font-size: .94rem;
  padding: 9px 15px; border-radius: 50px; color: var(--muted);
  transition: color .2s, background .2s;
}
.nav-menu a:hover { color: var(--ink); background: rgba(255,255,255,.06); }
.nav-menu a.active { color: var(--ink); background: rgba(236,72,153,.16); font-weight: 600; }

.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-cta .btn { padding: 10px 22px; }

/* Hamburger */
.hamburger {
  display: none; width: 44px; height: 44px; border-radius: 12px;
  position: relative; background: rgba(255,255,255,.07);
}
.hamburger span {
  position: absolute; left: 11px; right: 11px; height: 2.5px; border-radius: 3px;
  background: var(--ink); transition: transform .3s var(--ease), opacity .2s;
}
.hamburger span:nth-child(1) { top: 15px; }
.hamburger span:nth-child(2) { top: 21px; }
.hamburger span:nth-child(3) { top: 27px; }
.hamburger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* =====================================================================
   HERO (home)
   ===================================================================== */
.hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(900px 540px at 82% -10%, rgba(236,72,153,.28), transparent 60%),
    radial-gradient(760px 520px at 2% 108%, rgba(34,211,238,.22), transparent 55%),
    radial-gradient(600px 400px at 50% 50%, rgba(168,85,247,.10), transparent 70%),
    var(--bg);
}
.hero-grid {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 52px; align-items: center;
  padding: 92px 0 100px;
}
.hero-text h1 { margin-bottom: 20px; }
.hero-text .lead { margin-bottom: 32px; max-width: 540px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 38px; }
.hero-stats { display: flex; gap: 36px; flex-wrap: wrap; }
.hero-stats .stat strong { font-family: var(--font-head); font-size: 1.75rem; color: var(--ink); display: block; }
.hero-stats .stat span { font-size: .84rem; color: var(--muted); }

/* Hero visual: layered neon image card */
.hero-art { position: relative; min-height: 460px; }
.hero-art .img-frame {
  position: absolute; inset: 0 14% 14% 0; border-radius: 24px; overflow: hidden;
  box-shadow: var(--shadow-lg), 0 0 60px rgba(236,72,153,.35);
  border: 1px solid var(--line);
}
.hero-art .img-frame img { width: 100%; height: 100%; object-fit: cover; }
.hero-art .img-frame::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(236,72,153,.10), rgba(34,211,238,.10) 60%, transparent);
}
.hero-art .img-accent {
  position: absolute; width: 46%; bottom: 0; right: 0; aspect-ratio: 1;
  border-radius: 22px; overflow: hidden; border: 1px solid var(--line);
  box-shadow: var(--shadow-lg), 0 0 40px rgba(34,211,238,.4);
  animation: float 6s ease-in-out infinite;
}
.hero-art .img-accent img { width: 100%; height: 100%; object-fit: cover; }
.hero-card--note {
  position: absolute; top: 7%; right: 2%; z-index: 2;
  background: rgba(19,19,29,.9); color: var(--ink);
  padding: 13px 18px; border-radius: 14px; box-shadow: var(--shadow-md);
  border: 1px solid var(--line);
  display: flex; align-items: center; gap: 10px; font-weight: 600; font-family: var(--font-head); font-size: .9rem;
  animation: float 5s ease-in-out infinite reverse;
}
.hero-card--note .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 0 4px rgba(34,211,238,.22), 0 0 12px var(--cyan); }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }

/* Marquee strip */
.marquee {
  border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft);
  background: var(--bg-soft); overflow: hidden; padding: 16px 0;
}
.marquee-track {
  display: flex; gap: 48px; white-space: nowrap; width: max-content;
  animation: scrollx 26s linear infinite;
}
.marquee-track span { font-family: var(--font-head); font-weight: 600; letter-spacing: .12em; text-transform: uppercase; font-size: .95rem; color: var(--muted); display: inline-flex; align-items: center; gap: 48px; }
.marquee-track span::after { content: "●"; color: var(--magenta); }
@keyframes scrollx { to { transform: translateX(-50%); } }

/* =====================================================================
   PAGE BANNER (inner pages)
   ===================================================================== */
.page-banner {
  position: relative; padding: 78px 0 66px; text-align: center; color: var(--ink);
  background:
    radial-gradient(700px 360px at 80% -30%, rgba(236,72,153,.35), transparent 60%),
    radial-gradient(620px 340px at 10% 130%, rgba(34,211,238,.25), transparent 60%),
    var(--bg-soft);
  border-bottom: 1px solid var(--line-soft);
}
.page-banner h1 { margin-bottom: 12px; }
.page-banner p { color: var(--muted); max-width: 640px; margin: 0 auto; }
.breadcrumb { display: flex; gap: 8px; justify-content: center; align-items: center; margin-top: 20px; font-size: .88rem; font-family: var(--font-head); }
.breadcrumb a { color: var(--muted); }
.breadcrumb a:hover { color: var(--cyan); text-decoration: underline; }
.breadcrumb span { opacity: .55; }
.breadcrumb .current { color: var(--magenta); opacity: 1; font-weight: 600; }

/* =====================================================================
   CARDS / GRIDS
   ===================================================================== */
.grid { display: grid; gap: 26px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--bg-card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px; box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: rgba(236,72,153,.4); }
.card h3 { margin-bottom: 10px; }
.card p { color: var(--muted); }
.icon-badge {
  width: 58px; height: 58px; border-radius: 16px; display: grid; place-items: center;
  font-size: 1.7rem; margin-bottom: 18px;
  background: linear-gradient(135deg, rgba(236,72,153,.22), rgba(34,211,238,.16));
  border: 1px solid var(--line);
}

/* =====================================================================
   EVENT CARDS (with images)
   ===================================================================== */
.event-card { overflow: hidden; padding: 0; display: flex; flex-direction: column; }
.event-card .thumb { position: relative; aspect-ratio: 3 / 2; overflow: hidden; }
.event-card .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.event-card:hover .thumb img { transform: scale(1.06); }
.event-card .thumb::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgba(8,8,12,.85)); }
.event-card .date-chip {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  background: rgba(8,8,12,.78); border: 1px solid var(--line); backdrop-filter: blur(6px);
  border-radius: 12px; padding: 7px 12px; text-align: center; font-family: var(--font-head); line-height: 1.1;
}
.event-card .date-chip b { display: block; font-size: 1.25rem; color: var(--magenta); }
.event-card .date-chip span { font-size: .68rem; text-transform: uppercase; letter-spacing: .12em; color: var(--muted); }
.event-card .genre-tag {
  position: absolute; top: 14px; right: 14px; z-index: 2;
  background: rgba(34,211,238,.16); border: 1px solid rgba(34,211,238,.4); color: var(--cyan);
  font-family: var(--font-head); font-weight: 600; font-size: .68rem; text-transform: uppercase; letter-spacing: .08em;
  padding: 5px 11px; border-radius: 50px;
}
.event-card .body { padding: 22px 24px 26px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.event-card .body .act { font-family: var(--font-head); font-weight: 700; font-size: 1.2rem; color: var(--ink); }
.event-card .body .meta { font-size: .86rem; color: var(--muted); display: flex; flex-wrap: wrap; gap: 6px 14px; margin-bottom: 4px; }
.event-card .body .meta .ic { color: var(--cyan); }
.event-card .body p { font-size: .92rem; }
.event-card .body .foot { margin-top: auto; padding-top: 16px; display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.event-card .body .price { font-family: var(--font-head); font-weight: 700; color: var(--cyan); }
.event-card .btn { padding: 9px 18px; font-size: .85rem; }

/* Filter buttons */
.filters { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin-bottom: 44px; }
.filter-btn {
  padding: 9px 20px; border-radius: 50px; font-family: var(--font-head); font-weight: 600; font-size: .88rem;
  background: var(--bg-card); border: 1px solid var(--line); color: var(--muted);
  transition: background .2s, color .2s, border-color .2s, box-shadow .2s;
}
.filter-btn:hover { color: var(--ink); border-color: var(--magenta); }
.filter-btn.active { background: linear-gradient(100deg, var(--magenta), var(--magenta-dk)); color: #fff; border-color: transparent; box-shadow: var(--glow-magenta); }
.filter-group { margin-bottom: 18px; }
.filter-group .filter-label { display: block; text-align: center; font-family: var(--font-head); font-size: .72rem; text-transform: uppercase; letter-spacing: .18em; color: var(--muted-soft); margin-bottom: 14px; }
.no-results { text-align: center; color: var(--muted); font-family: var(--font-head); padding: 30px 0; display: none; }
.no-results.show { display: block; }

/* =====================================================================
   SPLIT SECTIONS (about teaser / VIP)
   ===================================================================== */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split-visual {
  min-height: 380px; border-radius: var(--radius); position: relative; overflow: hidden;
  box-shadow: var(--shadow-md), 0 0 50px rgba(236,72,153,.25); border: 1px solid var(--line);
}
.split-visual img { width: 100%; height: 100%; min-height: 380px; object-fit: cover; }
.split-visual::after { content: ""; position: absolute; inset: 0; background: linear-gradient(160deg, rgba(236,72,153,.14), rgba(34,211,238,.12) 60%, transparent); }
.split-visual.cyan { box-shadow: var(--shadow-md), 0 0 50px rgba(34,211,238,.25); }
.split-text h2 { margin-bottom: 18px; }
.split-text p + p { margin-top: 14px; }
.check-list { margin-top: 22px; display: grid; gap: 12px; }
.check-list li { display: flex; gap: 12px; align-items: flex-start; color: var(--ink); }
.check-list li::before { content: "▸"; color: var(--cyan); flex: none; font-weight: 700; }

/* =====================================================================
   INFO STRIP
   ===================================================================== */
.strip {
  background: linear-gradient(120deg, rgba(236,72,153,.12), rgba(34,211,238,.10));
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: 40px; display: grid; grid-template-columns: repeat(3,1fr); gap: 30px; box-shadow: var(--shadow-md);
}
.strip .item { display: flex; gap: 16px; align-items: flex-start; }
.strip .item .ic { font-size: 1.7rem; }
.strip .item h4 { color: var(--ink); font-size: 1.05rem; margin-bottom: 4px; }
.strip .item p { color: var(--muted); font-size: .92rem; }

/* =====================================================================
   TEASER GALLERY
   ===================================================================== */
.teaser-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.teaser-grid .tile { aspect-ratio: 1; }
.teaser-grid .tile.tall { grid-row: span 2; aspect-ratio: auto; }

/* =====================================================================
   TESTIMONIALS
   ===================================================================== */
.quote-card { max-width: 780px; margin: 0 auto; text-align: center; }
.quote-card .stars { color: var(--cyan); font-size: 1.2rem; letter-spacing: 3px; margin-bottom: 18px; }
.quote-card blockquote { font-family: var(--font-head); font-size: clamp(1.3rem,2.4vw,1.85rem); color: var(--ink); line-height: 1.4; font-weight: 600; }
.quote-card .who { margin-top: 24px; display: flex; gap: 14px; align-items: center; justify-content: center; }
.quote-card .avatar { width: 52px; height: 52px; border-radius: 50%; overflow: hidden; border: 2px solid var(--magenta); box-shadow: var(--glow-magenta); }
.quote-card .avatar img { width: 100%; height: 100%; object-fit: cover; }
.quote-card .who b { font-family: var(--font-head); color: var(--ink); display: block; }
.quote-card .who small { color: var(--muted); }

.testi-grid .card .stars { color: var(--cyan); letter-spacing: 2px; margin-bottom: 12px; }
.testi-grid .card p { color: var(--ink); font-style: italic; }
.testi-grid .card .who { margin-top: 18px; display: flex; align-items: center; gap: 12px; }
.testi-grid .card .avatar { width: 44px; height: 44px; border-radius: 50%; overflow: hidden; border: 1.5px solid var(--cyan); flex: none; }
.testi-grid .card .avatar img { width: 100%; height: 100%; object-fit: cover; }
.testi-grid .card .who b { font-family: var(--font-head); font-size: .95rem; }
.testi-grid .card .who small { color: var(--muted); }

/* =====================================================================
   CTA BAND
   ===================================================================== */
.cta-band { text-align: center; }
.cta-band .inner {
  background:
    radial-gradient(500px 300px at 20% 10%, rgba(236,72,153,.4), transparent 60%),
    radial-gradient(500px 300px at 85% 90%, rgba(34,211,238,.32), transparent 60%),
    linear-gradient(150deg, #16101e 0%, #0b0b13 100%);
  border: 1px solid var(--line);
  border-radius: 26px; padding: 66px 40px; color: var(--ink); box-shadow: var(--shadow-lg);
  position: relative; overflow: hidden;
}
.cta-band h2 { margin-bottom: 14px; }
.cta-band p { color: var(--muted); max-width: 560px; margin: 0 auto 30px; }
.cta-band .hero-actions { justify-content: center; margin-bottom: 0; }

/* =====================================================================
   STATS BAR
   ===================================================================== */
.stat-bar { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; text-align: center; }
.stat-bar .s strong { display: block; font-family: var(--font-head); font-size: clamp(1.8rem,3.4vw,2.6rem); color: var(--magenta); }
.stat-bar .s span { color: var(--muted); font-size: .9rem; }

/* =====================================================================
   GALLERY PAGE
   ===================================================================== */
.gallery-tabs { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin-bottom: 44px; }
.gallery-tabs a { padding: 9px 20px; border-radius: 50px; font-family: var(--font-head); font-weight: 600; font-size: .9rem; background: var(--bg-card); border: 1px solid var(--line); color: var(--muted); transition: background .2s, color .2s, border-color .2s; }
.gallery-tabs a:hover { color: var(--ink); border-color: var(--cyan); }

.gallery-group { margin-bottom: 54px; }
.gallery-group:last-child { margin-bottom: 0; }
.gallery-group h2 { margin-bottom: 22px; }
.gallery-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
.tile {
  border-radius: var(--radius-sm); position: relative; overflow: hidden;
  box-shadow: var(--shadow-sm); transition: transform .3s var(--ease), box-shadow .3s var(--ease);
  aspect-ratio: 1; background: var(--bg-card);
}
.tile img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.tile::after {
  content: attr(data-label); position: absolute; left: 0; right: 0; bottom: 0;
  padding: 28px 14px 12px; font-family: var(--font-head); font-size: .82rem; font-weight: 600; color: #fff;
  background: linear-gradient(transparent, rgba(8,8,12,.88)); text-align: left;
  opacity: 0; transform: translateY(8px); transition: opacity .3s, transform .3s;
}
.tile:hover { transform: scale(1.02); box-shadow: var(--shadow-md), 0 0 30px rgba(236,72,153,.35); }
.tile:hover img { transform: scale(1.08); }
.tile:hover::after { opacity: 1; transform: translateY(0); }
.tile.wide { grid-column: span 2; aspect-ratio: 2 / 1; }

/* =====================================================================
   CONTACT PAGE
   ===================================================================== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: start; }
.contact-info .info-item { display: flex; gap: 16px; padding: 18px 0; border-bottom: 1px solid var(--line-soft); }
.contact-info .info-item:last-child { border-bottom: none; }
.contact-info .info-item .ic { width: 48px; height: 48px; flex: none; border-radius: 14px; display: grid; place-items: center; font-size: 1.35rem; background: linear-gradient(135deg, rgba(236,72,153,.22), rgba(34,211,238,.16)); border: 1px solid var(--line); }
.contact-info .info-item h4 { margin-bottom: 2px; }
.contact-info .info-item p, .contact-info .info-item a { color: var(--muted); font-size: .95rem; }
.contact-info .info-item a:hover { color: var(--cyan); }

.form { background: var(--bg-card); border: 1px solid var(--line); border-radius: var(--radius); padding: 34px; box-shadow: var(--shadow-md); }
.field { margin-bottom: 18px; }
.field label { display: block; font-family: var(--font-head); font-weight: 600; font-size: .88rem; color: var(--ink); margin-bottom: 7px; }
.field input, .field textarea, .field select {
  width: 100%; padding: 13px 16px; border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  font-family: var(--font-body); font-size: .95rem; color: var(--ink); background: var(--bg-soft);
  transition: border-color .2s, box-shadow .2s;
}
.field select option { background: var(--bg-soft); color: var(--ink); }
.field input::placeholder, .field textarea::placeholder { color: var(--muted-soft); }
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--magenta); box-shadow: 0 0 0 3px rgba(236,72,153,.22); background: #0b0b12; }
.field textarea { resize: vertical; min-height: 130px; }
.field.error input, .field.error textarea, .field.error select { border-color: #f87171; }
.field .msg { color: #f87171; font-size: .8rem; margin-top: 5px; display: none; }
.field.error .msg { display: block; }
.form-note { font-size: .82rem; color: var(--muted-soft); margin-top: 6px; }
.form-success { display: none; background: rgba(34,211,238,.12); border: 1px solid rgba(34,211,238,.42); color: var(--cyan); padding: 14px 18px; border-radius: var(--radius-sm); font-family: var(--font-head); font-weight: 600; margin-bottom: 18px; }
.form-success.show { display: block; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }

.map-placeholder {
  margin-top: 30px; height: 280px; border-radius: var(--radius); overflow: hidden; position: relative;
  background:
    repeating-linear-gradient(45deg, rgba(255,255,255,.03) 0 18px, transparent 18px 36px),
    linear-gradient(150deg, #14101c 0%, #0b0b13 100%);
  border: 1px solid var(--line); display: grid; place-items: center; text-align: center;
}
.map-placeholder .pin { font-size: 2.6rem; animation: float 4s ease-in-out infinite; }
.map-placeholder .label { font-family: var(--font-head); font-weight: 600; color: var(--ink); margin-top: 6px; }
.map-placeholder small { color: var(--muted); }

/* =====================================================================
   FOOTER (shared)
   ===================================================================== */
.site-footer { background: var(--bg-soft); color: var(--muted); padding: 72px 0 28px; border-top: 1px solid var(--line-soft); }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.3fr; gap: 40px; }
.footer-grid h4 { color: var(--ink); font-size: 1rem; margin-bottom: 18px; letter-spacing: .02em; }
.footer-brand .logo { color: var(--ink); margin-bottom: 16px; }
.footer-brand .logo span small { color: var(--cyan); }
.footer-brand p { font-size: .92rem; max-width: 290px; }
.footer-col a, .footer-col p { display: block; color: var(--muted); font-size: .92rem; padding: 5px 0; transition: color .2s, padding-left .2s; }
.footer-col a:hover { color: var(--cyan); padding-left: 5px; }
.socials { display: flex; gap: 10px; margin-top: 8px; }
.socials a { width: 40px; height: 40px; border-radius: 12px; display: grid; place-items: center; font-size: 1.05rem; background: rgba(255,255,255,.05); border: 1px solid var(--line); padding: 0; transition: background .2s, box-shadow .2s, transform .2s; }
.socials a:hover { background: rgba(236,72,153,.2); box-shadow: var(--glow-magenta); transform: translateY(-2px); padding-left: 0; }
.footer-bottom { border-top: 1px solid var(--line-soft); margin-top: 48px; padding-top: 24px; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: .85rem; }
.footer-bottom a:hover { color: var(--cyan); }

/* =====================================================================
   SCROLL REVEAL
   ===================================================================== */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.visible { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }
.no-js .reveal { opacity: 1; transform: none; }

/* =====================================================================
   RESPONSIVE
   ===================================================================== */
@media (max-width: 980px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .hero-grid { grid-template-columns: 1fr; gap: 44px; }
  .hero-art { min-height: 380px; order: -1; }
  .split { grid-template-columns: 1fr; gap: 34px; }
  .split-visual { min-height: 300px; }
  .split-visual img { min-height: 300px; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .gallery-grid, .teaser-grid { grid-template-columns: repeat(2,1fr); }
  .stat-bar { grid-template-columns: repeat(2,1fr); gap: 30px; }
}

@media (max-width: 760px) {
  .section { padding: 66px 0; }
  .hamburger { display: block; }
  .nav-menu {
    position: fixed; inset: var(--header-h) 0 auto 0;
    flex-direction: column; align-items: stretch; gap: 4px;
    background: rgba(10,10,18,.98); backdrop-filter: blur(14px);
    padding: 16px 20px 26px;
    border-bottom: 1px solid var(--line); box-shadow: var(--shadow-md);
    transform: translateY(-12px); opacity: 0; pointer-events: none;
    transition: transform .3s var(--ease), opacity .3s;
  }
  .nav-menu.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav-menu a { padding: 13px 16px; font-size: 1rem; }
  .nav-cta .btn { display: none; }
  .strip { grid-template-columns: 1fr; gap: 22px; padding: 30px; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .hero-stats { gap: 24px; }
}

@media (max-width: 480px) {
  .grid-3, .grid-4, .grid-2 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .gallery-grid, .teaser-grid { grid-template-columns: 1fr; }
  .tile.wide { grid-column: span 1; aspect-ratio: 1; }
  .teaser-grid .tile.tall { grid-row: span 1; }
  .stat-bar { grid-template-columns: 1fr 1fr; }
  .container { padding: 0 18px; }
  .cta-band .inner { padding: 46px 24px; }
}

/* =====================================================================
   REDUCED MOTION
   ===================================================================== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}
