:root {
  --bg: #fff8f0;
  --text: #172033;
  --muted: #657083;
  --white: #ffffff;
  --dark: #101827;
  --line: rgba(16, 24, 39, 0.12);
  --shadow: 0 24px 80px rgba(16, 24, 39, 0.14);
  --shadow-soft: 0 16px 50px rgba(16, 24, 39, 0.10);
  --radius: 28px;
  --radius-sm: 18px;
  --font-heading: 'Barlow Condensed', Arial, sans-serif;
  --font-body: 'Inter', Arial, sans-serif;
}

.theme-events {
  --primary: #ff2d95;
  --primary-dark: #bf1268;
  --secondary: #ffb000;
  --accent: #36d6ff;
  --accent-2: #7c3cff;
  --page-bg: #fff6fc;
  --hero-bg: radial-gradient(circle at top left, rgba(255, 176, 0, 0.38), transparent 32%), radial-gradient(circle at 75% 15%, rgba(54, 214, 255, 0.34), transparent 30%), linear-gradient(135deg, #fff2f9 0%, #fff8e8 50%, #ecfbff 100%);
  --section-bg: #fff1fb;
}

.theme-sound {
  --primary: #275dff;
  --primary-dark: #123ab7;
  --secondary: #00d5ff;
  --accent: #a8ff2b;
  --accent-2: #7c3cff;
  --page-bg: #eef6ff;
  --hero-bg: radial-gradient(circle at 18% 12%, rgba(168, 255, 43, 0.42), transparent 30%), radial-gradient(circle at 80% 20%, rgba(0, 213, 255, 0.46), transparent 36%), linear-gradient(135deg, #edf4ff 0%, #f6ffed 50%, #edf9ff 100%);
  --section-bg: #eff8ff;
}

.theme-bbq {
  --primary: #ff4b1f;
  --primary-dark: #b52a10;
  --secondary: #ffd500;
  --accent: #34d399;
  --accent-2: #ff8a00;
  --page-bg: #fff7ec;
  --hero-bg: radial-gradient(circle at 14% 15%, rgba(255, 213, 0, 0.48), transparent 34%), radial-gradient(circle at 84% 18%, rgba(52, 211, 153, 0.30), transparent 30%), linear-gradient(135deg, #fff1dc 0%, #fff9e7 50%, #fff2ed 100%);
  --section-bg: #fff1df;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--page-bg);
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.container {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.top-strip {
  position: relative;
  z-index: 20;
  background: var(--dark);
  color: var(--white);
  font-size: 0.92rem;
}

.top-strip-inner {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.top-strip a {
  color: var(--secondary);
  font-weight: 800;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 255, 255, 0.78);
  border-bottom: 1px solid rgba(16, 24, 39, 0.08);
  backdrop-filter: blur(18px);
}

.nav-wrap {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.brand-mark {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--white);
  box-shadow: 0 12px 32px rgba(16, 24, 39, 0.22);
  font-family: var(--font-heading);
  font-size: 1.6rem;
  line-height: 1;
}

.brand-text {
  color: var(--text);
  font-size: 1.35rem;
}

.brand-text strong {
  color: var(--primary);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 7px;
}

.main-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  color: #29354a;
  font-weight: 800;
  font-size: 0.95rem;
  transition: 0.2s ease;
}

.main-nav a:hover,
.main-nav a.active {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 12px 26px rgba(16, 24, 39, 0.15);
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 16px;
  background: var(--dark);
  cursor: pointer;
  padding: 12px;
}

.nav-toggle span {
  display: block;
  height: 3px;
  margin: 5px 0;
  border-radius: 20px;
  background: var(--white);
  transition: 0.2s ease;
}

.menu-open .nav-toggle span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.menu-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.menu-open .nav-toggle span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 92px 0 82px;
  background: var(--hero-bg);
}

.hero::after {
  content: '';
  position: absolute;
  inset: auto -8% -150px -8%;
  height: 220px;
  background: var(--page-bg);
  border-radius: 50% 50% 0 0;
  opacity: 0.78;
}

.hero-shapes span {
  position: absolute;
  display: block;
  border-radius: 999px;
  opacity: 0.45;
  filter: blur(1px);
}

.hero-shapes span:nth-child(1) {
  width: 190px;
  height: 190px;
  top: 98px;
  left: -70px;
  background: var(--primary);
}

.hero-shapes span:nth-child(2) {
  width: 150px;
  height: 150px;
  right: 6%;
  top: 60px;
  background: var(--secondary);
}

.hero-shapes span:nth-child(3) {
  width: 90px;
  height: 90px;
  right: 26%;
  bottom: 90px;
  background: var(--accent);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 56px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--primary-dark);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.82rem;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--text);
  font-family: var(--font-heading);
  line-height: 0.95;
  letter-spacing: -0.03em;
}

h1 {
  max-width: 800px;
  font-size: clamp(3.7rem, 8vw, 7rem);
}

h2 {
  font-size: clamp(2.45rem, 5vw, 4.45rem);
}

h3 {
  font-size: 2rem;
}

p {
  margin: 0;
  color: var(--muted);
}

.hero-copy p:not(.eyebrow) {
  max-width: 670px;
  margin-top: 24px;
  font-size: 1.12rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 900;
  border: 2px solid transparent;
  transition: 0.2s ease;
}

.btn.primary {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--white);
  box-shadow: 0 18px 38px rgba(16, 24, 39, 0.20);
}

.btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 48px rgba(16, 24, 39, 0.24);
}

.btn.secondary {
  background: var(--white);
  color: var(--text);
  border-color: rgba(16, 24, 39, 0.12);
}

.btn.secondary:hover {
  border-color: var(--primary);
  color: var(--primary-dark);
}

.hero-card {
  position: relative;
  min-height: 520px;
  padding: 34px;
  border-radius: 42px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow);
  overflow: hidden;
  backdrop-filter: blur(20px);
}

.hero-card::before {
  content: '';
  position: absolute;
  inset: 16px;
  border-radius: 32px;
  border: 2px dashed rgba(16, 24, 39, 0.12);
  pointer-events: none;
}

.hero-card h2 {
  position: relative;
  z-index: 2;
  margin-top: 24px;
  font-size: clamp(2.25rem, 4vw, 3.8rem);
}

.hero-card ul {
  position: relative;
  z-index: 2;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.hero-card li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  color: #2c374c;
  font-weight: 800;
  border-bottom: 1px solid rgba(16, 24, 39, 0.08);
}

.hero-card li::before {
  content: '✓';
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  flex: 0 0 26px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--dark);
  font-weight: 900;
}

.card-ribbon {
  position: relative;
  z-index: 2;
  display: inline-flex;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--dark);
  color: var(--white);
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.75rem;
}

.party-visual {
  position: relative;
  z-index: 2;
  height: 230px;
  margin-top: 22px;
  border-radius: 34px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  overflow: hidden;
  box-shadow: inset 0 -28px 70px rgba(16, 24, 39, 0.16);
}

.party-visual::before {
  content: '';
  position: absolute;
  left: 12%;
  right: 12%;
  bottom: 32px;
  height: 50px;
  border-radius: 18px 18px 8px 8px;
  background: var(--white);
  box-shadow: 0 -58px 0 -18px rgba(255,255,255,0.75), 0 18px 30px rgba(16, 24, 39, 0.16);
}

.party-visual::after {
  content: '';
  position: absolute;
  inset: 30px 40px auto;
  height: 64px;
  border-radius: 50%;
  border: 8px solid rgba(255, 255, 255, 0.72);
  border-bottom-color: transparent;
}

.party-visual span {
  position: absolute;
  color: var(--white);
  font-size: 3rem;
  font-weight: 900;
}

.party-visual span:nth-child(1) { top: 22px; left: 24px; }
.party-visual span:nth-child(2) { top: 70px; right: 42px; }
.party-visual span:nth-child(3) { bottom: 28px; left: 52px; }
.party-visual span:nth-child(4) { bottom: 55px; right: 75px; }

.audio-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.sound-wave {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 240px;
  border-radius: 34px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  overflow: hidden;
}

.sound-wave::before,
.sound-wave::after {
  content: '';
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  border: 28px solid rgba(255, 255, 255, 0.18);
}

.sound-wave::before {
  left: -70px;
}

.sound-wave::after {
  right: -90px;
}

.sound-wave span {
  width: 22px;
  border-radius: 999px;
  background: var(--white);
  box-shadow: 0 14px 26px rgba(16, 24, 39, 0.18);
}

.sound-wave span:nth-child(1) { height: 72px; }
.sound-wave span:nth-child(2) { height: 132px; }
.sound-wave span:nth-child(3) { height: 188px; background: var(--accent); }
.sound-wave span:nth-child(4) { height: 132px; }
.sound-wave span:nth-child(5) { height: 72px; }

.grill-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.grill-visual {
  position: relative;
  z-index: 2;
  height: 245px;
  border-radius: 34px;
  background: linear-gradient(135deg, var(--secondary), var(--primary));
  overflow: hidden;
}

.grill-top {
  position: absolute;
  left: 50%;
  bottom: 76px;
  width: 245px;
  height: 98px;
  transform: translateX(-50%);
  border-radius: 120px 120px 18px 18px;
  background: var(--dark);
  box-shadow: inset 0 -16px 0 rgba(255, 255, 255, 0.10);
}

.grill-top::before {
  content: '';
  position: absolute;
  left: 24px;
  right: 24px;
  top: 34px;
  height: 8px;
  border-radius: 999px;
  background: repeating-linear-gradient(90deg, #fff 0 22px, transparent 22px 34px);
  opacity: 0.78;
}

.grill-bottom {
  position: absolute;
  left: 50%;
  bottom: 45px;
  width: 200px;
  height: 44px;
  transform: translateX(-50%);
  border-radius: 12px 12px 60px 60px;
  background: #20293a;
}

.grill-bottom::before,
.grill-bottom::after {
  content: '';
  position: absolute;
  bottom: -42px;
  width: 10px;
  height: 52px;
  background: #20293a;
  border-radius: 999px;
}

.grill-bottom::before { left: 42px; transform: rotate(10deg); }
.grill-bottom::after { right: 42px; transform: rotate(-10deg); }

.smoke {
  position: absolute;
  bottom: 160px;
  width: 28px;
  height: 74px;
  border-radius: 999px;
  border: 8px solid rgba(255, 255, 255, 0.72);
  border-bottom: 0;
  border-right: 0;
}

.smoke.one { left: 32%; }
.smoke.two { left: 47%; height: 94px; }
.smoke.three { left: 62%; }

.quick-cards {
  position: relative;
  z-index: 3;
  margin-top: -42px;
}

.quick-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.quick-grid article {
  padding: 26px;
  border-radius: var(--radius-sm);
  background: var(--white);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(16, 24, 39, 0.08);
}

.quick-grid strong {
  display: block;
  margin-bottom: 8px;
  color: var(--primary-dark);
  font-family: var(--font-heading);
  font-size: 2rem;
  line-height: 1;
}

.quick-grid span {
  display: block;
  color: var(--muted);
  font-weight: 600;
}

.section {
  padding: 92px 0;
}

.section-head {
  margin-bottom: 42px;
}

.section-head.centered {
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-head p:not(.section-kicker) {
  margin-top: 18px;
  font-size: 1.06rem;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.service-grid article {
  position: relative;
  min-height: 280px;
  padding: 28px;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid rgba(16, 24, 39, 0.08);
  box-shadow: 0 12px 40px rgba(16, 24, 39, 0.08);
  overflow: hidden;
  transition: 0.22s ease;
}

.service-grid article::before {
  content: '';
  position: absolute;
  inset: 0;
  height: 8px;
  background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent));
}

.service-grid article:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-soft);
}

.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  margin-bottom: 24px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1.55rem;
  font-weight: 900;
}

.service-grid h3 {
  margin-bottom: 14px;
}

.service-grid p {
  font-weight: 600;
}

.feature-band {
  padding: 72px 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.62), var(--section-bg));
}

.feature-card {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 48px;
  padding: 38px;
  border-radius: 42px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow-soft);
}

.feature-art {
  position: relative;
  min-height: 360px;
  border-radius: 34px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  box-shadow: inset 0 -42px 90px rgba(16, 24, 39, 0.16);
}

.event-art::before {
  content: '';
  position: absolute;
  inset: 48px 36px 84px;
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 28px 50px rgba(16, 24, 39, 0.14);
}

.event-art::after {
  content: '';
  position: absolute;
  left: 82px;
  right: 82px;
  bottom: 74px;
  height: 64px;
  border-radius: 20px;
  background: var(--dark);
}

.mini-stage span {
  position: absolute;
  top: 82px;
  width: 34px;
  height: 100px;
  border-radius: 999px 999px 12px 12px;
  background: var(--accent);
  z-index: 2;
}

.mini-stage span:nth-child(1) { left: 30%; height: 72px; background: var(--accent-2); }
.mini-stage span:nth-child(2) { left: 46%; height: 118px; background: var(--primary); }
.mini-stage span:nth-child(3) { left: 62%; height: 88px; background: var(--secondary); }

.sound-art {
  display: grid;
  place-items: center;
}

.speaker-shape {
  position: relative;
  z-index: 2;
  width: 150px;
  height: 190px;
  border-radius: 32px;
  background: var(--dark);
  box-shadow: 0 24px 40px rgba(16, 24, 39, 0.24);
}

.speaker-shape::before,
.speaker-shape::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 50%;
  background: var(--accent);
}

.speaker-shape::before {
  top: 34px;
  width: 48px;
  height: 48px;
}

.speaker-shape::after {
  bottom: 28px;
  width: 78px;
  height: 78px;
}

.pulse-rings span {
  position: absolute;
  inset: 50%;
  width: 140px;
  height: 140px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 10px solid rgba(255, 255, 255, 0.28);
}

.pulse-rings span:nth-child(2) { width: 220px; height: 220px; }
.pulse-rings span:nth-child(3) { width: 300px; height: 300px; }

.bbq-art {
  display: grid;
  place-items: center;
}

.map-pin {
  position: relative;
  z-index: 3;
  width: 106px;
  height: 106px;
  display: grid;
  place-items: center;
  border-radius: 50% 50% 50% 10px;
  transform: rotate(-45deg);
  background: var(--dark);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 4rem;
  font-weight: 900;
  box-shadow: 0 28px 44px rgba(16, 24, 39, 0.24);
}

.map-pin::before {
  content: 'H';
  transform: rotate(45deg);
}

.map-pin {
  font-size: 0;
}

.ring {
  position: absolute;
  border-radius: 50%;
  border: 12px solid rgba(255, 255, 255, 0.25);
}

.r1 { width: 160px; height: 160px; }
.r2 { width: 240px; height: 240px; }
.r3 { width: 320px; height: 320px; }

.feature-copy p:not(.section-kicker) {
  margin-top: 18px;
  font-size: 1.06rem;
  font-weight: 600;
}

.facts-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 28px;
}

.facts-grid div {
  padding: 18px;
  border-radius: 20px;
  background: var(--page-bg);
  border: 1px solid rgba(16, 24, 39, 0.08);
}

.facts-grid strong {
  display: block;
  color: var(--primary-dark);
  font-family: var(--font-heading);
  font-size: 2rem;
  line-height: 1;
}

.facts-grid span {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 800;
}

.split-section {
  background: var(--page-bg);
}

.two-col {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 48px;
}

.copy p:not(.section-kicker) {
  margin-top: 18px;
  font-weight: 600;
  font-size: 1.06rem;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.pill-list span {
  display: inline-flex;
  align-items: center;
  min-height: 50px;
  padding: 0 18px;
  border-radius: 999px;
  background: var(--white);
  border: 1px solid rgba(16, 24, 39, 0.08);
  box-shadow: 0 10px 24px rgba(16, 24, 39, 0.08);
  color: #273247;
  font-weight: 900;
}

.contact-panel {
  padding: 78px 0;
  color: var(--white);
  background: linear-gradient(135deg, var(--dark), var(--primary-dark));
}

.contact-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.contact-panel .section-kicker,
.contact-panel h2,
.contact-panel p {
  color: var(--white);
}

.contact-panel p {
  max-width: 720px;
  margin-top: 14px;
  opacity: 0.86;
}

.contact-panel .btn.primary {
  flex: 0 0 auto;
  background: linear-gradient(135deg, var(--secondary), var(--accent));
  color: var(--dark);
}

.footer-bottom {
  background: var(--dark);
  color: var(--white);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.footer-brand-text {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 900;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
}

@media (max-width: 1020px) {
  .hero-grid,
  .feature-card,
  .two-col {
    grid-template-columns: 1fr;
  }

  .hero-card {
    min-height: auto;
  }

  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 820px) {
  .container {
    width: min(100% - 28px, 1160px);
  }

  .top-strip-inner {
    justify-content: center;
    text-align: center;
    flex-wrap: wrap;
    padding: 10px 0;
  }

  .nav-wrap {
    min-height: 74px;
  }

  .nav-toggle {
    display: block;
  }

  .main-nav {
    position: fixed;
    left: 14px;
    right: 14px;
    top: 116px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    padding: 16px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow);
    border: 1px solid rgba(16, 24, 39, 0.08);
  }

  .menu-open .main-nav {
    display: flex;
  }

  .main-nav a {
    justify-content: center;
    min-height: 52px;
    background: var(--page-bg);
  }

  .hero {
    padding: 62px 0 76px;
  }

  h1 {
    font-size: clamp(3.2rem, 15vw, 5.7rem);
  }

  .hero-grid {
    gap: 36px;
  }

  .quick-grid,
  .service-grid,
  .facts-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 66px 0;
  }

  .feature-band {
    padding: 56px 0;
  }

  .feature-card {
    padding: 20px;
    border-radius: 30px;
  }

  .feature-art {
    min-height: 280px;
  }

  .contact-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-inner {
    flex-direction: column;
    justify-content: center;
    text-align: center;
    padding: 22px 0;
  }
}

@media (max-width: 560px) {
  .brand-mark {
    width: 46px;
    height: 46px;
    border-radius: 15px;
    font-size: 1.35rem;
  }

  .brand-text {
    font-size: 1.15rem;
  }

  .hero-actions,
  .hero-actions .btn,
  .contact-panel .btn {
    width: 100%;
  }

  .hero-card {
    padding: 24px;
    border-radius: 30px;
  }

  .party-visual,
  .sound-wave,
  .grill-visual {
    height: 200px;
  }

  .quick-cards {
    margin-top: -28px;
  }

  .quick-grid article,
  .service-grid article {
    padding: 22px;
  }
}

/* Gallery page */

.gallery-page .gallery-hero {
  background:
    radial-gradient(circle at 18% 22%, rgba(255, 255, 255, 0.18), transparent 28%),
    radial-gradient(circle at 82% 18%, rgba(255, 214, 102, 0.24), transparent 30%),
    linear-gradient(135deg, #7c3aed, #ec4899 52%, #f97316);
}

.gallery-page .gallery-hero h1,
.gallery-page .gallery-hero p,
.gallery-page .gallery-hero .eyebrow {
  color: #ffffff;
}

.gallery-page .gallery-hero .eyebrow {
  opacity: 0.94;
}

.gallery-page .gallery-hero .hero-copy p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.9);
}

.gallery-page .gallery-hero .btn.secondary {
  background: rgba(255, 255, 255, 0.94);
}

.gallery-summary-card {
  overflow: hidden;
}

.gallery-summary-card p {
  position: relative;
  z-index: 2;
  margin-top: 16px;
  font-weight: 700;
}

.gallery-stats {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin: 24px 0;
}

.gallery-stats div {
  padding: 22px;
  border-radius: 22px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #ffffff;
  text-align: center;
  box-shadow: 0 16px 34px rgba(16, 24, 39, 0.16);
}

.gallery-stats strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 54px;
  line-height: 1;
  font-weight: 900;
}

.gallery-stats span {
  display: block;
  margin-top: 6px;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.gallery-section {
  background:
    radial-gradient(circle at top left, rgba(236, 72, 153, 0.08), transparent 28%),
    radial-gradient(circle at bottom right, rgba(249, 115, 22, 0.08), transparent 30%),
    #fff8fb;
}

.album-jump-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin: 0 0 42px;
}

.album-jump-list a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 10px 18px;
  border-radius: 999px;
  background: #ffffff;
  color: #1f2937;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  box-shadow: 0 12px 30px rgba(31, 41, 55, 0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.album-jump-list a:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 42px rgba(31, 41, 55, 0.16);
}

.album-jump-list span {
  min-width: 26px;
  height: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #ec4899;
  color: #ffffff;
  font-size: 12px;
}

.gallery-album {
  margin-top: 46px;
}

.gallery-album:first-of-type {
  margin-top: 0;
}

.album-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 20px;
}

.album-head h3 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(36px, 4vw, 58px);
  line-height: 0.95;
  color: #1f2937;
  text-transform: uppercase;
}

.album-head > span {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 10px 16px;
  border-radius: 999px;
  background: #1f2937;
  color: #ffffff;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.gallery-item {
  position: relative;
  display: block;
  min-height: 260px;
  border-radius: 28px;
  overflow: hidden;
  background: #111827;
  box-shadow: 0 18px 45px rgba(31, 41, 55, 0.16);
  isolation: isolate;
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(0, 0, 0, 0.72), transparent 52%),
    linear-gradient(135deg, rgba(236, 72, 153, 0.16), rgba(249, 115, 22, 0.12));
  z-index: 1;
  opacity: 0.88;
  transition: opacity 0.2s ease;
}

.gallery-item img {
  width: 100%;
  height: 310px;
  display: block;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item span {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 2;
  color: #ffffff;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.gallery-item:hover img {
  transform: scale(1.06);
}

.gallery-item:hover::after {
  opacity: 1;
}

.gallery-empty {
  max-width: 760px;
  margin: 0 auto;
  padding: 36px;
  border-radius: 30px;
  background: #ffffff;
  text-align: center;
  box-shadow: 0 18px 45px rgba(31, 41, 55, 0.12);
}

.gallery-empty h3 {
  margin: 0 0 10px;
  font-family: var(--font-heading);
  font-size: 38px;
  line-height: 1;
  color: #1f2937;
  text-transform: uppercase;
}

.gallery-empty p {
  margin: 0 0 18px;
  color: #64748b;
}

.gallery-empty code,
.folder-example code {
  display: inline-flex;
  padding: 10px 14px;
  border-radius: 12px;
  background: #111827;
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
}

.folder-example {
  display: grid;
  gap: 10px;
  justify-content: center;
  margin-top: 18px;
}

@media (max-width: 1000px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-item img {
    height: 280px;
  }
}

@media (max-width: 700px) {
  .album-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .album-head > span {
    width: 100%;
    justify-content: center;
  }

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

  .gallery-item {
    border-radius: 22px;
  }

  .gallery-item img {
    height: 260px;
  }

  .gallery-stats {
    grid-template-columns: 1fr;
  }

  .album-jump-list {
    justify-content: stretch;
  }

  .album-jump-list a {
    width: 100%;
    justify-content: space-between;
  }

  .gallery-empty {
    padding: 28px 20px;
  }

  .folder-example code {
    width: 100%;
    overflow-x: auto;
  }
}
.gallery-item {
  appearance: none;
  border: 0;
  padding: 0;
  cursor: pointer;
  text-align: left;
}

body.lightbox-open {
  overflow: hidden;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 28px;
  background: rgba(16, 24, 39, 0.92);
}

.lightbox.open {
  display: flex;
}

.lightbox-content {
  position: relative;
  width: min(1100px, 100%);
  max-height: calc(100vh - 70px);
  display: grid;
  gap: 16px;
}

.lightbox-content img {
  width: 100%;
  max-height: calc(100vh - 170px);
  object-fit: contain;
  border-radius: 24px;
  background: #000000;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.42);
}

.lightbox-caption {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px 16px;
  color: #ffffff;
  text-align: center;
}

.lightbox-caption strong {
  font-family: var(--font-heading);
  font-size: 1.7rem;
  line-height: 1;
  text-transform: uppercase;
}

.lightbox-caption span,
.lightbox-caption small {
  font-weight: 800;
  color: rgba(255, 255, 255, 0.78);
}

.lightbox-close,
.lightbox-nav {
  position: fixed;
  z-index: 10000;
  border: 0;
  cursor: pointer;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(12px);
  transition: 0.2s ease;
}

.lightbox-close:hover,
.lightbox-nav:hover {
  background: var(--primary);
  transform: scale(1.04);
}

.lightbox-close {
  top: 22px;
  right: 22px;
  width: 52px;
  height: 52px;
  border-radius: 999px;
  font-size: 2.3rem;
  line-height: 1;
}

.lightbox-nav {
  top: 50%;
  width: 58px;
  height: 58px;
  border-radius: 999px;
  transform: translateY(-50%);
  font-size: 2rem;
}

.lightbox-nav:hover {
  transform: translateY(-50%) scale(1.04);
}

.lightbox-prev {
  left: 22px;
}

.lightbox-next {
  right: 22px;
}

@media (max-width: 760px) {
  .lightbox {
    padding: 18px;
  }

  .lightbox-content img {
    max-height: calc(100vh - 190px);
    border-radius: 18px;
  }

  .lightbox-close {
    top: 14px;
    right: 14px;
    width: 46px;
    height: 46px;
  }

  .lightbox-nav {
    top: auto;
    bottom: 18px;
    width: 50px;
    height: 50px;
    transform: none;
  }

  .lightbox-nav:hover {
    transform: scale(1.04);
  }

  .lightbox-prev {
    left: 18px;
  }

  .lightbox-next {
    right: 18px;
  }

  .lightbox-caption {
    padding-bottom: 70px;
  }
}