@font-face { font-family: 'DM Sans'; font-style: normal; font-weight: 300 700; font-display: swap; src: url('/assets/fonts/dm-sans-latin-ext.woff2') format('woff2'); unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; }
@font-face { font-family: 'DM Sans'; font-style: normal; font-weight: 300 700; font-display: swap; src: url('/assets/fonts/dm-sans-latin.woff2') format('woff2'); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; }
@font-face { font-family: 'DM Sans'; font-style: italic; font-weight: 300 700; font-display: swap; src: url('/assets/fonts/dm-sans-italic-latin.woff2') format('woff2'); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; }

/* ======================== VARIABLES ======================== */
:root {
  --bg:            #080808;
  --dark:          #101010;
  --dark-surface:  #181818;
  --light:         rgb(254, 253, 238);
  --light-dim:     rgba(254, 253, 238, 0.62);
  --gold:          #c8922a;
  --gold-light:    #dfa832;
  --gold-dim:      rgba(200, 146, 42, 0.12);
  --gold-glow:     rgba(200, 146, 42, 0.32);
  --glass-bg:      rgba(255, 255, 255, 0.04);
  --glass-hover:   rgba(255, 255, 255, 0.07);
  --glass-border:  rgba(255, 255, 255, 0.08);
  --radius-sm:     8px;
  --radius:        14px;
  --radius-lg:     22px;
  --container:     1200px;
}

/* ======================== RESET & BASE ======================== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', system-ui, sans-serif;
  background: var(--bg);
  color: var(--light);
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
::selection { background: var(--gold-dim); color: var(--light); }

/* Skip link - visible on focus for accessibility */
.skip-link {
  position: fixed;
  top: -100px;
  left: 20px;
  z-index: 9999;
  padding: 12px 20px;
  background: var(--gold);
  color: #000;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  border-radius: var(--radius-sm);
  transition: top 0.2s ease, transform 0.2s ease;
  opacity: 0;
}
.skip-link:focus {
  top: 20px;
  opacity: 1;
  outline: 3px solid var(--light);
  outline-offset: 2px;
}

/* Focus visible styles - enhanced keyboard navigation */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

/* Ensure interactive elements have visible focus */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

/* Remove default outline for mouse users but keep for keyboard */
a:focus:not(:focus-visible),
button:focus:not(:focus-visible) {
  outline: none;
}

/* Gallery item focus style */
.gallery-item:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
  border-radius: var(--radius-sm);
}

/* Form field focus already enhanced in .form-field:focus */

/* Grain texture */
body::before {
  content: '';
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  opacity: 0.028;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 180px 180px;
}

/* ======================== CONTAINER ======================== */
.container { max-width: var(--container); margin: 0 auto; padding: 0 48px; }

/* ======================== SECTION THEMING ======================== */
section { position: relative; z-index: 1; }
.section-dark  { background-color: var(--dark);  color: var(--light); }
.section-light { background-color: #f0edd8; color: var(--dark); }

/* Eyebrow labels */
.section-eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.2em;
  text-transform: uppercase; margin-bottom: 20px;
}
.section-eyebrow::after {
  content: ''; display: block; width: 36px; height: 1px; opacity: 0.55;
}
.section-dark  .section-eyebrow { color: var(--gold); letter-spacing: 0.22em; }
.section-dark  .section-eyebrow::after { background: linear-gradient(90deg, var(--gold), transparent); }
.section-light .section-eyebrow { color: rgba(14,14,14,0.62); }
.section-light .section-eyebrow::after { background: rgba(14,14,14,0.4); }

/* Headings */
.section-title {
  font-size: clamp(2.4rem, 4.5vw, 4rem);
  font-weight: 700; letter-spacing: -0.04em; line-height: 1.06;
}
.section-dark  .section-title      { color: var(--light); }
.section-dark  .section-title em   { font-style: normal; color: var(--gold); }
.section-light .section-title      { color: #0e0e0e; }
.section-light .section-title em   { font-style: italic; opacity: 0.4; }

/* Body copy */
.section-body { font-size: 16px; line-height: 1.78; max-width: 540px; }
.section-dark  .section-body { color: rgba(254,253,238,0.72); }
.section-light .section-body { color: rgba(14,14,14,0.68); }

/* ======================== NAVIGATION ======================== */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 48px; height: 68px;
  background: rgba(8, 8, 8, 0.72);
  backdrop-filter: blur(22px) saturate(160%);
  -webkit-backdrop-filter: blur(22px) saturate(160%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: background 0.4s ease, box-shadow 0.4s ease;
}
nav.scrolled {
  background: rgba(8, 8, 8, 0.92);
  box-shadow: 0 4px 40px rgba(0,0,0,0.7);
}

.nav-logo img {
  height: 42px; width: auto; display: block;
  filter: brightness(0) invert(1);
  opacity: 0.92; transition: opacity 0.2s;
}
.nav-logo:hover img { opacity: 1; }

.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-links a {
  text-decoration: none; color: rgba(254,253,238,0.55);
  font-size: 13px; font-weight: 500; padding: 7px 14px; border-radius: 4px;
  transition: color 0.2s ease; letter-spacing: 0.03em;
}
.nav-links a:hover,
.nav-links a.active { color: var(--light); }

.nav-cta {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%) !important;
  color: #1a0f00 !important;
  padding: 8px 22px !important; border-radius: var(--radius-sm) !important;
  font-weight: 700 !important; letter-spacing: 0.04em !important;
  box-shadow: 0 0 0 1px rgba(200,146,42,0.25) inset !important;
  transition: filter 0.25s, transform 0.25s, box-shadow 0.25s !important;
}
.nav-cta:hover {
  filter: brightness(1.1) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(200,146,42,0.4), 0 0 0 1px rgba(200,146,42,0.3) inset !important;
}

/* Hamburger button */
.nav-toggle {
  display: none; flex-direction: column; justify-content: center; align-items: center;
  gap: 5px; width: 42px; height: 42px;
  background: none; border: none; cursor: pointer; padding: 8px; border-radius: 4px;
  transition: background 0.2s;
}
.nav-toggle:hover { background: rgba(254,253,238,0.07); }
.nav-toggle span {
  display: block; width: 22px; height: 1.5px;
  background: var(--light); border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile drawer */
.nav-mobile {
  position: fixed; inset: 0; z-index: 199;
  background: rgba(8, 8, 8, 0.96);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 6px;
  opacity: 0; pointer-events: none;
  transform: translateY(-14px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.nav-mobile.open { opacity: 1; pointer-events: all; transform: none; }
.nav-mobile a {
  text-decoration: none; color: var(--light);
  font-size: 26px; font-weight: 700; letter-spacing: -0.03em;
  padding: 12px 32px; border-radius: 6px; width: 260px; text-align: center;
  transition: color 0.2s, background 0.2s;
}
.nav-mobile a:hover { color: var(--gold); }
.nav-mobile-cta {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%) !important;
  color: #1a0f00 !important;
  margin-top: 20px; font-size: 18px !important;
  border-radius: var(--radius-sm) !important;
}
.nav-mobile-cta:hover { filter: brightness(1.08); }

/* ======================== BUTTONS ======================== */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 13px 28px; border-radius: var(--radius-sm);
  font-size: 14px; font-weight: 700; font-family: inherit;
  text-decoration: none; cursor: pointer; border: none;
  transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
  letter-spacing: 0.04em; line-height: 1;
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: #1a0f00;
  box-shadow: 0 4px 22px rgba(200,146,42,0.35), 0 0 0 1px rgba(200,146,42,0.2) inset;
}
.btn-primary:hover {
  filter: brightness(1.08); transform: translateY(-2px);
  box-shadow: 0 10px 36px rgba(200,146,42,0.52), 0 0 0 1px rgba(200,146,42,0.3) inset;
}
.section-dark .btn-outline {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  color: rgba(254,253,238,0.78);
}
.section-dark .btn-outline:hover {
  border-color: rgba(254,253,238,0.4); color: var(--light);
  background: var(--glass-hover);
  transform: translateY(-1px);
}
.section-light .btn-outline {
  background: transparent;
  border: 1px solid rgba(16,16,16,0.2);
  color: rgba(16,16,16,0.78);
}
.section-light .btn-outline:hover {
  border-color: rgba(16,16,16,0.5); color: var(--dark);
  background: rgba(16,16,16,0.06);
  transform: translateY(-1px);
}

/* ======================== HERO ======================== */
.hero {
  min-height: 100vh;
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: stretch; padding-top: 68px;
  background-color: var(--bg);
  overflow: hidden;
}
/* Ambient orb glow */
.hero::before {
  content: '';
  position: absolute;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(200,146,42,0.1) 0%, transparent 65%);
  top: -120px; left: -160px;
  pointer-events: none; z-index: 0;
}
.hero::after {
  content: '';
  position: absolute;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(200,146,42,0.05) 0%, transparent 70%);
  bottom: 40px; left: 30%;
  pointer-events: none; z-index: 0;
}
.hero-left {
  display: flex; flex-direction: column; justify-content: center;
  padding: 80px 64px 80px 48px;
  border-right: 1px solid rgba(255,255,255,0.07);
  position: relative; z-index: 1;
}
.hero-tag {
  display: inline-flex; align-items: center; gap: 10px;
  margin-bottom: 32px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  padding: 7px 14px; border-radius: 100px;
  width: fit-content;
}
.hero-tag-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--gold); box-shadow: 0 0 10px var(--gold);
  animation: blink 2.4s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.25} }
.hero-tag-text {
  font-size: 10px; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase; color: rgba(254,253,238,0.5);
}
.hero-title {
  font-size: clamp(3rem, 5.2vw, 5.6rem);
  font-weight: 700; letter-spacing: -0.045em; line-height: 0.98;
  color: var(--light); margin-bottom: 28px;
}
.hero-title .line-accent {
  background: linear-gradient(135deg, var(--gold) 20%, var(--gold-light) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: 16.5px; color: rgba(254,253,238,0.58);
  line-height: 1.78; max-width: 440px; margin-bottom: 40px;
  font-weight: 400;
}
.hero-actions {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 56px; flex-wrap: wrap;
}
.hero-stats {
  display: flex; gap: 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 36px;
}
.hero-stat { flex: 1; padding-right: 32px; }
.hero-stat + .hero-stat {
  padding-left: 32px; padding-right: 32px;
  border-left: 1px solid rgba(255,255,255,0.08);
}
.hero-stat-num {
  font-size: 28px; font-weight: 700; letter-spacing: -0.04em;
  color: var(--light); line-height: 1;
}
.hero-stat-label {
  font-size: 11px; color: rgba(254,253,238,0.55);
  margin-top: 7px; letter-spacing: 0.06em; text-transform: uppercase;
}
.hero-right { position: relative; overflow: hidden; }
.hero-right img {
  width: 100%; height: 100%; object-fit: cover; object-position: center top;
  display: block;
}
.hero-right::after {
  content: '';
  position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(to right, rgba(8,8,8,0.3) 0%, transparent 30%),
              linear-gradient(to top, rgba(8,8,8,0.65) 0%, transparent 50%);
}
.hero-rating-mobile { display: none; }
.hero-right-label {
  position: absolute; bottom: 28px; left: 28px; z-index: 2;
  background: rgba(8, 8, 8, 0.55);
  backdrop-filter: blur(20px) saturate(150%); -webkit-backdrop-filter: blur(20px) saturate(150%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 16px 22px; border-radius: var(--radius);
}
.hero-right-label .stars  { font-size: 11px; color: var(--gold); letter-spacing: 4px; margin-bottom: 8px; }
.hero-right-label .label-text { font-size: 13px; font-weight: 700; color: var(--light); }
.hero-right-label .label-sub  { font-size: 11px; color: rgba(254,253,238,0.42); margin-top: 3px; }

/* ======================== TICKER ======================== */
.ticker {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  padding: 14px 0; overflow: hidden;
  position: relative; z-index: 1;
}
/* Fade edges */
.ticker::before, .ticker::after {
  content: '';
  position: absolute; top: 0; bottom: 0; width: 80px; z-index: 2;
  pointer-events: none;
}
.ticker::before {
  left: 0;
  background: linear-gradient(to right, var(--gold), transparent);
}
.ticker::after {
  right: 0;
  background: linear-gradient(to left, var(--gold-light), transparent);
}
.ticker-track {
  display: flex; white-space: nowrap;
  animation: ticker-scroll 32s linear infinite;
  will-change: transform;
}
@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.ticker-item {
  display: inline-flex; align-items: center;
  font-size: 10.5px; font-weight: 800; letter-spacing: 0.2em;
  text-transform: uppercase; color: rgba(26,15,0,0.85);
  padding: 0 30px; flex-shrink: 0;
}
.ticker-item .sep {
  width: 3px; height: 3px; border-radius: 50%;
  background: rgba(26,15,0,0.3); margin-right: 30px; flex-shrink: 0;
}

/* ======================== ABOUT (light) ======================== */
.about-section {
  display: grid; grid-template-columns: 1fr 1fr;
  background-color: #f0edd8;
}
.about-image-col {
  position: relative; min-height: 620px; overflow: hidden;
}
.about-image-col img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}
.about-image-col:hover img { transform: scale(1.04); }
.about-image-overlay {
  position: absolute; bottom: 28px; right: 28px;
}
.about-stat-pill {
  background: rgba(10,10,10,0.85);
  backdrop-filter: blur(12px);
  color: var(--light);
  font-size: 10px; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; padding: 10px 20px; border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.1);
}
.about-text-col {
  padding: 80px 72px 80px 64px;
  display: flex; flex-direction: column; justify-content: center;
}
.about-features { display: flex; flex-direction: column; gap: 0; margin-top: 36px; }
.about-feature {
  display: flex; align-items: flex-start; gap: 20px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(16,16,16,0.1);
}
.about-feature:first-child { border-top: 1px solid rgba(16,16,16,0.1); }
.feature-num {
  font-size: 10px; font-weight: 800; letter-spacing: 0.08em;
  color: var(--gold);
  background: rgba(200,146,42,0.14);
  min-width: 36px; height: 36px;
  border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 1px;
  border: 1px solid rgba(200,146,42,0.2);
}
.feature-title { font-size: 14px; font-weight: 700; color: #0e0e0e; margin-bottom: 5px; }
.feature-body  { font-size: 14px; color: rgba(14,14,14,0.68); line-height: 1.68; }

/* ======================== SERVICES (dark) ======================== */
.services-section {
  background: linear-gradient(180deg, var(--dark) 0%, var(--bg) 100%);
  padding: 110px 0;
}
.services-header {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: 56px; gap: 40px;
}
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.07);
  border-radius: var(--radius);
  overflow: hidden;
}
.service-card {
  background: var(--dark-surface);
  padding: 40px 36px 44px;
  position: relative; overflow: hidden;
  transition: background 0.35s ease;
}
.service-card:hover { background: rgba(200,146,42,0.07); }
.service-card::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.service-card:hover::after { transform: scaleX(1); }
.service-num {
  font-size: 10px; font-weight: 700; letter-spacing: 0.14em;
  color: rgba(254,253,238,0.32); margin-bottom: 28px; display: block;
}
.service-icon-wrap { font-size: 26px; margin-bottom: 14px; display: block; line-height: 1; }
.service-title { font-size: 16px; font-weight: 700; color: var(--light); margin-bottom: 10px; }
.service-body  { font-size: 14px; color: rgba(254,253,238,0.62); line-height: 1.76; }

/* ======================== TEAM (dark) ======================== */
.team-section {
  background: linear-gradient(180deg, var(--bg) 0%, var(--dark) 100%);
  padding: 110px 0;
}
.team-header {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: 52px; gap: 40px;
}
.team-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
}
.team-card {
  position: relative; border-radius: var(--radius); overflow: hidden;
  aspect-ratio: 3/4; cursor: default;
  border: 1px solid rgba(255,255,255,0.06);
  transition: box-shadow 0.4s ease, transform 0.4s ease;
}
.team-card:hover {
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 0 1px rgba(200,146,42,0.15);
  transform: translateY(-4px);
}
.team-card img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.team-card:hover img { transform: scale(1.05); }
.team-card-overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 44px 24px 28px;
  background: linear-gradient(to top, rgba(8,8,8,0.95) 50%, transparent);
}
.team-name  { font-size: 20px; font-weight: 700; letter-spacing: -0.02em; color: var(--light); }
.team-real  { font-size: 13px; color: rgba(254,253,238,0.5); margin-top: 4px; }
.team-genre {
  display: inline-block; margin-top: 14px;
  font-size: 9.5px; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold); background: rgba(200,146,42,0.15);
  padding: 5px 12px; border-radius: 100px;
  border: 1px solid rgba(200,146,42,0.25);
}

/* ======================== GALLERY PAGINATION ======================== */
.gallery-item.gallery-hidden { display: none; }
.gallery-more-wrap {
  display: flex; justify-content: center; margin-top: 40px;
}
.gallery-more-btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 13px 30px; border-radius: var(--radius-sm);
  background: var(--glass-bg); border: 1px solid var(--glass-border);
  color: rgba(254,253,238,0.72); font-family: inherit;
  font-size: 13px; font-weight: 600; letter-spacing: 0.05em;
  cursor: pointer;
  transition: background 0.25s, border-color 0.25s, color 0.25s, transform 0.25s;
}
.gallery-more-btn:hover {
  background: var(--glass-hover); border-color: rgba(255,255,255,0.18);
  color: var(--light); transform: translateY(-1px);
}
.gallery-more-btn svg { transition: transform 0.3s ease; }
.gallery-more-btn.expanded svg { transform: rotate(180deg); }

/* ======================== GALLERY (dark) ======================== */
.gallery-section { background: var(--dark); padding: 110px 0; }
.gallery-header {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: 44px; gap: 40px;
}
.gallery-grid {
  columns: 4;
  column-gap: 8px;
}
.gallery-item {
  break-inside: avoid;
  margin-bottom: 8px;
  overflow: hidden; position: relative;
  background: var(--dark-surface);
  display: block; border-radius: var(--radius-sm);
  cursor: pointer;
}
.gallery-item img {
  width: 100%; height: auto; display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), filter 0.35s ease;
  filter: saturate(78%);
}
.gallery-item:hover img { transform: scale(1.05); filter: saturate(100%); }

/* ======================== MIXTAPES (dark) ======================== */
.mixtapes-section { padding: 110px 0; }
.mixtapes-header { margin-bottom: 44px; }
.mixtapes-player {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,0.12);
}
.mixtapes-player iframe { display: block; }
.sc-consent {
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid rgba(0,0,0,0.08);
  padding: 48px 32px;
  text-align: center;
}
.sc-consent-inner {
  max-width: 480px; margin: 0 auto;
  display: flex; flex-direction: column; align-items: center; gap: 16px;
}
.sc-consent-logo { color: #f50; opacity: 0.85; }
.sc-consent-title {
  font-size: 1.05rem; font-weight: 700;
  color: var(--dark); margin: 0;
}
.sc-consent-text {
  font-size: 0.82rem; color: #555; line-height: 1.6; margin: 0;
}
.sc-consent-text a { color: var(--dark); }
.sc-consent-text a:hover { text-decoration: underline; }
.sc-consent-remember {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.8rem; color: #666; cursor: pointer;
}
.sc-consent-remember input { cursor: pointer; accent-color: #f50; }
.sc-consent-btn {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 4px;
  padding: 10px 24px;
  background: #f50; color: #fff;
  border: none; border-radius: 6px;
  font-size: 0.88rem; font-weight: 600; letter-spacing: 0.03em;
  cursor: pointer; transition: background 0.2s, transform 0.15s;
}
.sc-consent-btn:hover { background: #e04a00; transform: translateY(-1px); }
.mixtapes-cta {
  margin-top: 28px; text-align: center;
}
.mixtapes-cta a {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--dark); font-size: 0.85rem; letter-spacing: 0.04em;
  text-decoration: none; opacity: 0.55; transition: opacity 0.2s;
}
.mixtapes-cta a:hover { opacity: 1; }

/* ======================== CONTACT (light) ======================== */
.contact-section {
  display: grid; grid-template-columns: 1fr 1fr;
  background-color: #f0edd8;
}
.contact-left {
  padding: 80px 72px 80px 48px;
  display: flex; flex-direction: column; justify-content: space-between; gap: 44px;
  border-right: 1px solid rgba(16,16,16,0.1);
}
.contact-left-title {
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 700; letter-spacing: -0.035em; line-height: 1.1;
  color: #0e0e0e; margin-bottom: 18px;
}
.contact-left-title em { font-style: italic; opacity: 0.45; }
.contact-left-body { font-size: 16px; color: rgba(14,14,14,0.68); line-height: 1.78; }
.contact-items { display: flex; flex-direction: column; gap: 10px; }
.contact-item {
  display: flex; align-items: center; gap: 16px;
  padding: 14px 18px;
  border: 1px solid rgba(16,16,16,0.1); border-radius: var(--radius-sm);
  text-decoration: none; color: #0e0e0e;
  transition: background 0.25s, border-color 0.25s, transform 0.25s;
}
.contact-item:hover {
  background: rgba(16,16,16,0.06);
  border-color: rgba(16,16,16,0.22);
  transform: translateX(3px);
}
.contact-item-icon { font-size: 18px; flex-shrink: 0; }
.contact-item-meta {
  font-size: 10px; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(14,14,14,0.38); margin-bottom: 3px;
}
.contact-item-val { font-size: 15px; font-weight: 600; color: #0e0e0e; }

.socials { display: flex; gap: 8px; flex-wrap: wrap; }
.social-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 16px; border-radius: var(--radius-sm);
  font-size: 12px; font-weight: 600; letter-spacing: 0.04em;
  border: 1px solid rgba(16,16,16,0.18);
  color: #0e0e0e; text-decoration: none;
  transition: all 0.25s ease;
}
.social-btn:hover {
  background: #0e0e0e; color: var(--light);
  border-color: #0e0e0e;
  transform: translateY(-1px);
}

/* Contact right: dark card on light section */
.contact-right {
  background: #0e0e0e; color: var(--light);
  padding: 64px 64px 64px 72px;
  display: flex; flex-direction: column; justify-content: center;
}
.contact-right h2 {
  font-size: clamp(1.6rem, 2.4vw, 2.4rem);
  font-weight: 700; letter-spacing: -0.035em;
  color: var(--light); margin-bottom: 10px;
}
.form-hint { font-size: 13px; color: rgba(254,253,238,0.35); margin-bottom: 26px; }
.contact-form { display: flex; flex-direction: column; gap: 11px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 11px; }
.form-field {
  width: 100%; padding: 13px 16px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  font-family: inherit; font-size: 14px; color: var(--light);
  outline: none;
  transition: border-color 0.25s, background 0.25s, box-shadow 0.25s;
  -webkit-appearance: none;
}
.form-field::placeholder { color: rgba(254,253,238,0.25); }
.form-field:focus {
  border-color: var(--gold);
  background: rgba(255,255,255,0.07);
  box-shadow: 0 0 0 3px rgba(200,146,42,0.14);
}
textarea.form-field { min-height: 116px; resize: vertical; }
.honeypot { display: none !important; }
.captcha-row { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.captcha-label { font-size: 13px; color: rgba(254,253,238,0.45); flex-shrink: 0; }
.captcha-input { max-width: 90px !important; }
.flash {
  padding: 13px 16px; border-radius: var(--radius-sm);
  font-size: 14px; margin-bottom: 10px;
}
.flash-success { background: rgba(78,175,70,0.12); border: 1px solid rgba(78,175,70,0.24); color: #86efac; }
.flash-error   { background: rgba(220,60,50,0.1); border: 1px solid rgba(220,60,50,0.22); color: #fca5a5; }

/* ======================== FOOTER (dark) ======================== */
footer {
  background: var(--bg);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 52px 0 36px; position: relative; z-index: 1;
}
.footer-logo-wrap {
  display: flex; justify-content: center;
  margin-bottom: 36px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-logo-img {
  height: 48px; width: auto; display: block;
  filter: brightness(0) invert(1);
  opacity: 0.6; transition: opacity 0.3s;
}
.footer-logo-wrap a:hover .footer-logo-img { opacity: 0.95; }
.footer-inner {
  display: flex; align-items: center; justify-content: center;
  gap: 20px; flex-wrap: wrap;
}
footer p { font-size: 12.5px; color: rgba(254,253,238,0.3); text-align: center; }
footer a { color: rgba(254,253,238,0.4); text-decoration: none; transition: color 0.2s; }
footer a:hover { color: var(--light); }

/* ======================== REVEAL ANIMATIONS ======================== */
.reveal {
  opacity: 0; transform: translateY(28px);
  filter: blur(6px);
  transition:
    opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.75s cubic-bezier(0.16, 1, 0.3, 1),
    filter 0.75s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible { opacity: 1; transform: none; filter: blur(0); }

/* Staggered children */
.stagger .service-card,
.stagger .team-card {
  opacity: 0; transform: translateY(20px);
  filter: blur(4px);
  transition:
    opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.6s cubic-bezier(0.16, 1, 0.3, 1),
    filter 0.6s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.4s ease;
}
.stagger.visible .service-card,
.stagger.visible .team-card { opacity: 1; transform: none; filter: blur(0); }
.stagger.visible .service-card:nth-child(1), .stagger.visible .team-card:nth-child(1) { transition-delay: 0.05s; }
.stagger.visible .service-card:nth-child(2), .stagger.visible .team-card:nth-child(2) { transition-delay: 0.12s; }
.stagger.visible .service-card:nth-child(3), .stagger.visible .team-card:nth-child(3) { transition-delay: 0.19s; }
.stagger.visible .service-card:nth-child(4) { transition-delay: 0.26s; }
.stagger.visible .service-card:nth-child(5) { transition-delay: 0.33s; }
.stagger.visible .service-card:nth-child(6) { transition-delay: 0.40s; }

/* Gallery stagger */
.gallery-grid .gallery-item {
  opacity: 0;
  transition: opacity 0.55s cubic-bezier(0.16, 1, 0.3, 1);
}
.gallery-grid.visible .gallery-item { opacity: 1; }

@media (prefers-reduced-motion: reduce) {
  .reveal, .stagger .service-card, .stagger .team-card, .gallery-grid .gallery-item {
    transition: opacity 0.3s ease !important;
    filter: none !important;
    transform: none !important;
  }
}

/* ======================== RESPONSIVE ======================== */

/* Tablet */
@media (max-width: 1024px) {
  nav { padding: 0 32px; }
  .container { padding: 0 32px; }
  .hero-left { padding: 60px 48px 60px 32px; }
  .about-text-col { padding: 60px 48px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { columns: 3; }
  .contact-left { padding: 60px 48px 60px 32px; }
  .contact-right { padding: 60px 48px; }
}

/* Mobile */
@media (max-width: 768px) {
  nav { padding: 0 20px; height: 60px; }
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .container { padding: 0 20px; }

  /* Hero: stack */
  .hero {
    grid-template-columns: 1fr; min-height: auto; padding-top: 60px;
  }
  .hero-right { height: 56vw; min-height: 240px; order: -1; }
  .hero-right img { object-position: center bottom; }
  .hero-right-label { display: none; }
  .hero-rating-mobile {
    display: inline-flex; align-items: center; gap: 10px;
    background: var(--glass-bg); border: 1px solid var(--glass-border);
    padding: 8px 14px; border-radius: 100px;
    margin-bottom: 28px;
  }
  .hero-rating-mobile .stars { font-size: 10px; color: var(--gold); letter-spacing: 3px; }
  .hero-rating-mobile span { font-size: 11px; font-weight: 600; color: rgba(254,253,238,0.6); letter-spacing: 0.06em; }
  .hero-left {
    padding: 40px 20px 48px; border-right: none;
    border-bottom: none;
  }
  .hero-title { font-size: clamp(2.4rem, 9vw, 3.2rem); }
  .hero-sub { font-size: 16px; max-width: 100%; }
  .hero-actions { gap: 10px; }
  .hero-actions .btn { flex: 1; justify-content: center; min-width: 130px; }
  .hero-stats { gap: 0; flex-wrap: nowrap; }
  .hero-stat { padding-right: 20px; }
  .hero-stat + .hero-stat { padding-left: 20px; }
  .hero-stat-num { font-size: 22px; }

  /* About: stack */
  .about-section { grid-template-columns: 1fr; }
  .about-image-col { min-height: 280px; }
  .about-text-col { padding: 44px 20px; }

  /* Services */
  .services-section { padding: 72px 0; }
  .services-header { flex-direction: column; align-items: flex-start; gap: 18px; margin-bottom: 32px; }
  .services-grid { grid-template-columns: 1fr; }

  /* Team */
  .team-section { padding: 64px 0; }
  .team-header { flex-direction: column; align-items: flex-start; gap: 18px; margin-bottom: 32px; }
  .team-grid { grid-template-columns: 1fr; gap: 14px; }
  .team-card { aspect-ratio: 4/3; }

  /* Gallery */
  .gallery-section { padding: 64px 0; }
  .gallery-header { flex-direction: column; align-items: flex-start; gap: 18px; margin-bottom: 28px; }
  .gallery-grid { columns: 2; }

  /* Contact: stack */
  .contact-section { grid-template-columns: 1fr; }
  .contact-left { padding: 48px 20px 40px; border-right: none; border-bottom: 1px solid rgba(16,16,16,0.1); }
  .contact-right { padding: 40px 20px 56px; }
  .form-row { grid-template-columns: 1fr; }

  /* Footer */
  .footer-inner { flex-direction: column; align-items: center; text-align: center; gap: 14px; }

  /* Reduce padding on sections */
  .team-section, .gallery-section { padding: 72px 0; }
  .events-section { padding: 72px 0; }
}

/* Override: stagger/gallery containers should not animate – only their children do */
.stagger.reveal,
.gallery-grid.reveal {
  opacity: 1 !important; transform: none !important; filter: none !important; transition: none !important;
}

/* ======================== EVENTS (light) ======================== */
.events-section {
  background-color: #f0edd8;
  padding: 110px 0;
}
.events-header { margin-bottom: 48px; }

/* Events grid wrapper */
.events-carousel-wrap {
  position: relative;
}
.events-carousel {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  align-items: stretch;
}

/* Card */
.event-card {
  background: #101010; color: var(--light);
  border-radius: var(--radius); padding: 32px 28px 24px;
  display: flex; flex-direction: column; gap: 16px;
  position: relative; overflow: hidden;
  height: 100%;
  border: 1px solid rgba(255,255,255,0.07);
  transition: transform 0.32s cubic-bezier(0.16,1,0.3,1), box-shadow 0.32s ease;
}
.event-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4), 0 0 0 1px rgba(255,255,255,0.1);
}
.event-card--next {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: #1a0f00; border-color: transparent;
}
.event-card--next .event-weekday,
.event-card--next .event-month,
.event-card--next .event-meta-item { color: rgba(26,15,0,0.65); }
.event-card--next .event-day { color: #1a0f00; }
.event-card--next .event-name { color: #1a0f00; }
.event-card--next .event-type-tag {
  background: rgba(26,15,0,0.15); color: #1a0f00;
  border-color: rgba(26,15,0,0.2);
}
.event-card--next .event-card-link { color: #1a0f00; }

/* Badge */
.event-badge {
  display: inline-flex; align-items: center; align-self: flex-start;
  font-size: 9px; font-weight: 800; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--gold); background: rgba(200,146,42,0.12);
  border: 1px solid rgba(200,146,42,0.28);
  padding: 4px 10px; border-radius: 100px;
}
.event-card--next .event-badge {
  color: #1a0f00; background: rgba(26,15,0,0.15);
  border-color: rgba(26,15,0,0.25);
}

/* Date block */
.event-card-date {
  display: flex; flex-direction: column;
}
.event-weekday {
  font-size: 10px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(254,253,238,0.58); margin-bottom: 4px;
}
.event-day {
  font-size: 52px; font-weight: 700; letter-spacing: -0.05em; line-height: 1;
  color: var(--light);
}
.event-month {
  font-size: 13px; font-weight: 600; letter-spacing: 0.04em;
  color: rgba(254,253,238,0.62); margin-top: 5px;
}

/* Body */
.event-card-body { flex: 1; }
.event-name {
  font-size: 16px; font-weight: 700; letter-spacing: -0.02em;
  color: var(--light); line-height: 1.3; margin-bottom: 10px;
}
.event-meta {
  display: flex; flex-direction: column; gap: 5px;
}
.event-meta-item {
  display: flex; align-items: center; gap: 7px;
  font-size: 12px; color: rgba(254,253,238,0.62); line-height: 1.4;
}
.event-meta-item svg { flex-shrink: 0; opacity: 0.6; }

/* Footer */
.event-card-footer {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid rgba(254,253,238,0.1);
}
.event-card--next .event-card-footer { border-top-color: rgba(26,15,0,0.15); }
.event-type-tag {
  font-size: 9.5px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(254,253,238,0.62);
  border: 1px solid rgba(254,253,238,0.22);
  padding: 3px 10px; border-radius: 100px;
}
.event-card-link {
  font-size: 12px; font-weight: 700; letter-spacing: 0.04em;
  color: var(--gold); text-decoration: none;
  transition: opacity 0.2s;
}
.event-card-link:hover { opacity: 0.75; }

.events-empty {
  padding: 56px 0; text-align: center;
  color: rgba(54,54,54,0.4); font-size: 15px;
}

/* Carousel responsive */
@media (max-width: 1024px) {
  .events-carousel { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .events-section { padding: 64px 0; }
  .events-carousel {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}

/* ======================== GALLERY LIGHTBOX ======================== */
.gallery-item {
  cursor: zoom-in;
}
.lightbox {
  position: fixed; inset: 0; z-index: 500;
  background: rgba(10,10,10,0.95);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.25s ease;
}
.lightbox.open { opacity: 1; pointer-events: all; }
.lightbox-img-wrap {
  position: relative; max-width: 90vw; max-height: 88vh;
  display: flex; align-items: center; justify-content: center;
}
.lightbox-img-wrap img {
  max-width: 90vw; max-height: 88vh;
  object-fit: contain; display: block;
  border-radius: 3px;
  transition: opacity 0.18s ease;
}
.lightbox-img-wrap img.loading { opacity: 0.3; }
.lightbox-close {
  position: absolute; top: 20px; right: 20px;
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(254,253,238,0.1); border: 1.5px solid rgba(254,253,238,0.2);
  color: var(--light); cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; line-height: 1;
  transition: background 0.2s;
}
.lightbox-close:hover { background: rgba(254,253,238,0.2); }
.lightbox-btn {
  position: fixed; top: 50%; transform: translateY(-50%);
  width: 52px; height: 52px; border-radius: 50%;
  background: rgba(254,253,238,0.12); border: 1.5px solid rgba(254,253,238,0.25);
  color: var(--light); cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s; z-index: 510;
}
.lightbox-btn:hover { background: rgba(254,253,238,0.28); }
.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }
.lightbox-counter {
  position: absolute; bottom: -40px; left: 50%; transform: translateX(-50%);
  font-size: 12px; font-weight: 600; letter-spacing: 0.1em;
  color: rgba(254,253,238,0.45); white-space: nowrap;
}
@media (max-width: 600px) {
  .lightbox-prev { left: 10px; }
  .lightbox-next { right: 10px; }
  .lightbox-btn  { width: 42px; height: 42px; }
}

/* ======================== LEGAL PAGES ======================== */
.legal-page {
  background: var(--light); color: var(--dark);
  min-height: calc(100vh - 68px);
  padding: 120px 0 100px;
}
.legal-content {
  max-width: 720px; margin: 0 auto;
}
.back-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 600; color: rgba(54,54,54,0.5);
  text-decoration: none; letter-spacing: 0.03em;
  margin-bottom: 48px;
  transition: color 0.2s;
}
.back-link:hover { color: var(--dark); }
.back-link svg { transition: transform 0.2s; }
.back-link:hover svg { transform: translateX(-3px); }
.legal-content h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700; letter-spacing: -0.03em;
  color: var(--dark); margin-bottom: 48px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(54,54,54,0.12);
}
.legal-content h2 {
  font-size: 14px; font-weight: 800; letter-spacing: 0.14em;
  text-transform: uppercase; color: rgba(54,54,54,0.45);
  margin-top: 40px; margin-bottom: 12px;
}
.legal-content h2:first-of-type { margin-top: 0; }
.legal-content p {
  font-size: 15px; line-height: 1.8; color: rgba(54,54,54,0.75);
  margin-bottom: 18px;
}
.legal-content a {
  color: var(--gold); text-decoration: none;
  border-bottom: 1px solid rgba(200,146,42,0.35);
  transition: border-color 0.2s;
}
.legal-content a:hover { border-color: var(--gold); }
@media (max-width: 768px) {
  .legal-page { padding: 88px 0 64px; }
  .legal-content h1 { margin-bottom: 32px; }
}

/* ======================== 404 PAGE ======================== */
.error-page {
  background: var(--dark); color: var(--light);
  min-height: calc(100vh - 68px);
  display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 80px 20px;
}
.error-page h1 {
  font-size: clamp(4rem, 12vw, 8rem);
  font-weight: 700; letter-spacing: -0.05em; line-height: 1;
  color: var(--gold); margin-bottom: 16px;
}
.error-page p {
  font-size: 18px; color: rgba(254,253,238,0.55); margin-bottom: 32px;
}

/* Reduced motion – only disable jarring transitions, keep gentle pulse & ticker */
@media (prefers-reduced-motion: reduce) {
  .reveal, .stagger .service-card, .stagger .team-card,
  .gallery-grid .gallery-item { transition: none; opacity: 1; transform: none; }
}


/* ======================== LINKS PAGE ======================== */
body.page-links > footer { display: none; }
.links-page {
  min-height: 100vh;
  background: var(--bg);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 80px 20px 48px;
}
.links-card {
  width: 100%; max-width: 420px;
  display: flex; flex-direction: column; align-items: center;
  gap: 0;
}
.links-logo {
  width: 88px; height: 88px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(255,255,255,0.1);
  margin-bottom: 20px;
}
.links-logo img { width: 100%; height: 100%; object-fit: cover; }
.links-name {
  font-size: 1.15rem; font-weight: 700; color: var(--light);
  letter-spacing: -0.02em; margin-bottom: 6px;
}
.links-bio {
  font-size: 0.82rem; color: rgba(254,253,238,0.45);
  text-align: center; line-height: 1.6;
  margin-bottom: 36px;
}
.links-list {
  width: 100%;
  display: flex; flex-direction: column; gap: 12px;
  margin-bottom: 40px;
}
.links-btn {
  display: flex; align-items: center; gap: 14px;
  width: 100%; padding: 14px 20px;
  background: var(--dark-surface);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  color: var(--light); text-decoration: none;
  font-size: 0.9rem; font-weight: 600;
  transition: background 0.18s, border-color 0.18s, transform 0.15s;
}
.links-btn:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.18);
  transform: translateY(-2px);
}
.links-btn-icon {
  width: 36px; height: 36px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.links-btn-icon svg { display: block; }
.links-btn-label { flex: 1; }
.links-btn-sub {
  font-size: 0.72rem; font-weight: 400;
  color: rgba(254,253,238,0.4);
  display: block; margin-top: 1px;
}
.links-btn--instagram .links-btn-icon { background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285aeb 90%); }
.links-btn--facebook  .links-btn-icon { background: #1877f2; }
.links-btn--soundcloud .links-btn-icon { background: #f50; }
.links-btn--youtube   .links-btn-icon { background: #ff0000; }
.links-btn--booking   .links-btn-icon { background: var(--gold); }
.links-btn--booking { background: var(--gold); border-color: transparent; color: #1a1a1a; }
.links-btn--booking:hover { background: var(--gold-light); border-color: transparent; }
.links-btn--booking .links-btn-sub { color: rgba(0,0,0,0.5) !important; }
.links-btn--website   .links-btn-icon { background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12); }
.links-footer {
  font-size: 0.75rem; color: rgba(254,253,238,0.22);
  text-align: center;
}
.links-footer a { color: inherit; text-decoration: none; }
.links-footer a:hover { color: rgba(254,253,238,0.5); }
