@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:            #363636;
  --dark:          #2a2a2a;
  --dark-surface:  #1e1e1e;
  --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.05);
  --glass-hover:   rgba(255, 255, 255, 0.1);
  --glass-border:  rgba(255, 255, 255, 0.12);
  --glass-blur:    25px;
  --shadow-sm:     0 2px 4px rgba(0,0,0,0.1);
  --shadow-md:     0 4px 12px rgba(0,0,0,0.15);
  --shadow-lg:     0 12px 34px rgba(0,0,0,0.25);
  --shadow-gold:   0 0 20px rgba(200, 146, 42, 0.15);
  --radius-sm:     10px;
  --radius:        18px;
  --radius-lg:     28px;
  --container:     1240px;
}

/* ======================== 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;
}

/* Base Link Styling to prevent "broken blue links" */
a {
  color: var(--gold);
  text-decoration: none;
  transition: color 0.2s ease, opacity 0.2s ease;
}

a:hover {
  color: var(--gold-light);
}

/* Special handling for links in sections */
.section-light a:not(.btn) {
  color: var(--gold);
  border-bottom: 1px solid var(--gold-dim);
}

.section-light a:not(.btn):hover {
  color: var(--gold-light);
  border-bottom-color: var(--gold);
}

/* Legal pages links */
.legal-content a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 1px;
}

.legal-content a:hover {
  color: var(--gold-light);
}

/* 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);
  overflow: hidden;
}
.section-dark::before {
  content: '';
  position: absolute;
  top: 10%; left: -10%;
  width: 40%; height: 40%;
  background: radial-gradient(circle, var(--gold-glow) 0%, transparent 70%);
  filter: blur(80px);
  pointer-events: none;
  z-index: -1;
  opacity: 0.4;
}
.section-dark::after {
  content: '';
  position: absolute;
  bottom: 10%; right: -10%;
  width: 50%; height: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
  filter: blur(100px);
  pointer-events: none;
  z-index: -1;
  opacity: 0.3;
}
.section-light { background-color: var(--bg); color: var(--light); }
.section-light .section-body { color: rgba(254, 253, 238, 0.68); }

/* Global Section Header Styles */
.section-eyebrow {
  display: block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.04em;
  margin-bottom: 24px;
  color: var(--light);
}
.section-body {
  font-size: 18px;
  line-height: 1.7;
  color: var(--light-dim);
}

/* Light Section Overrides */
.section-light .section-title,
.section-light h1,
.section-light h2,
.section-light h3,
.section-light h4,
.section-light h5,
.section-light h6 {
  color: #363636 !important;
}

.section-light .section-eyebrow {
  color: #b38226; /* Darker gold for better contrast on dark bg/light sections */
}

.section-light .section-body,
.section-light p {
  color: rgba(54, 54, 54, 0.8) !important;
}

/* ======================== GRID UTILS ======================== */
.grid-2, .grid-3 { display: grid; gap: 40px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 991px) {
  .grid-2, .grid-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 767px) {
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
}
.py-120 { padding-top: 120px; padding-bottom: 120px; }
@media (max-width: 767px) {
  .py-120 { padding-top: 64px; padding-bottom: 64px; }
}
.text-center { text-align: center; }

/* ======================== FEATURES ======================== */
.feature-card {
  padding: 40px;
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
}
.feature-icon { font-size: 32px; margin-bottom: 24px; }
.feature-title { font-size: 22px; font-weight: 700; margin-bottom: 16px; }

/* ======================== 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: 80px;
  background: rgba(54, 54, 54, 0.45);
  backdrop-filter: blur(var(--glass-blur)) saturate(180%);
  -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(180%);
  border-bottom: 1px solid var(--glass-border);
  transition: background 0.4s ease, box-shadow 0.4s ease;
}
nav.scrolled {
  background: rgba(54, 54, 54, 0.92);
  box-shadow: 0 4px 40px rgba(0,0,0,0.7);
}

.nav-logo img {
  height: 50px; 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; }

/* Navigation Dropdown */
.nav-dropdown {
  position: relative;
  display: inline-block;
}

.nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
}

.nav-dropdown-toggle::after {
  content: '';
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid currentColor;
  opacity: 0.5;
  transition: transform 0.2s ease;
}

.nav-dropdown:hover .nav-dropdown-toggle::after {
  transform: rotate(180deg);
}

.nav-dropdown-content {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(12px);
  min-width: 220px;
  background: rgba(12, 12, 12, 0.6);
  backdrop-filter: blur(var(--glass-blur)) saturate(160%);
  -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(160%);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  padding: 12px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(255,255,255,0.03);
  z-index: 1000;
}

.nav-dropdown:hover .nav-dropdown-content {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(4px);
}

.nav-dropdown-content a {
  display: block;
  padding: 10px 16px !important;
  color: var(--light-dim) !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  text-decoration: none;
  transition: all 0.3s ease;
  border-radius: 8px !important;
}

.nav-dropdown-content a:hover {
  background: var(--glass-hover);
  color: var(--gold) !important;
  padding-left: 20px !important;
  transform: translateX(4px);
}
.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%, #b38226 100%) !important;
  color: #000 !important;
  padding: 10px 24px !important; border-radius: var(--radius-sm) !important;
  font-weight: 700 !important; letter-spacing: 0.02em !important;
  box-shadow: var(--shadow-sm) !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}
.nav-cta:hover {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%) !important;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md), var(--shadow-gold) !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(54, 54, 54, 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.4s cubic-bezier(0.16, 1, 0.3, 1), transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.nav-mobile.open { opacity: 1; pointer-events: all; transform: none; }
.nav-mobile a {
  text-decoration: none; color: var(--light);
  font-size: 20px; font-weight: 700; letter-spacing: -0.01em;
  padding: 10px 24px; border-radius: 6px; width: auto; min-width: 220px; text-align: center;
  transition: all 0.2s ease;
  opacity: 0.8;
}
.nav-mobile a:hover { color: var(--gold); opacity: 1; transform: scale(1.05); }
.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;
  padding: 16px 32px !important;
  border-radius: var(--radius-sm) !important;
  opacity: 1 !important;
}
.nav-mobile-cta:hover { filter: brightness(1.1); transform: none !important; color: #000 !important; }

/* ======================== BUTTONS ======================== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 12px;
  padding: 16px 32px; border-radius: var(--radius-sm);
  font-size: 15px; font-weight: 700; font-family: inherit;
  text-decoration: none; cursor: pointer; border: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  letter-spacing: 0.02em; line-height: 1.2;
}
.btn:hover {
  transform: translateY(-2px);
}
.btn:active {
  transform: translateY(0);
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold) 0%, #b38226 100%);
  color: #000;
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
  color: #000 !important;
  box-shadow: var(--shadow-md), var(--shadow-gold);
}
.section-dark .btn-outline {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--glass-border);
  color: var(--light);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
}
.section-dark .btn-outline:hover {
  border-color: var(--gold);
  background: var(--glass-hover);
  box-shadow: var(--shadow-md);
}
.section-light .btn-outline {
  background: transparent;
  border: 1.5px solid rgba(16,16,16,0.15);
  color: var(--dark);
}
.section-light .btn-outline:hover {
  border-color: var(--dark);
  background: rgba(16,16,16,0.04);
}

/* ======================== HERO ======================== */
.hero {
  min-height: 100vh;
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: stretch; padding-top: 80px;
  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(54,54,54,0.3) 0%, transparent 30%),
              linear-gradient(to top, rgba(54,54,54,0.65) 0%, transparent 50%);
}
.hero-rating-mobile { display: none; }
.hero-right-label {
  position: absolute; bottom: 28px; left: 28px; z-index: 2;
  background: rgba(54, 54, 54, 0.45);
  backdrop-filter: blur(var(--glass-blur)) saturate(150%); -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(150%);
  border: 1px solid rgba(255, 255, 255, 0.15);
  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; }

.hero-media-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.hero-video-container {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
}
.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ======================== 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.65);
  backdrop-filter: blur(var(--glass-blur));
  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: 24px;
  border-radius: var(--radius);
}
.service-card {
  position: relative; overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur)) saturate(120%);
  -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(120%);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  background: var(--glass-hover);
  transform: translateY(-8px);
  border-color: rgba(200, 146, 42, 0.3);
  box-shadow: var(--shadow-lg), var(--shadow-gold);
}
.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(54,54,54,0.75) 0%, rgba(54,54,54,0.3) 60%, transparent 100%);
  backdrop-filter: blur(12px) saturate(140%);
  -webkit-backdrop-filter: blur(12px) saturate(140%);
}
  background: linear-gradient(to top, rgba(54,54,54,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; }

/* ======================== VIDEOS (dark) ======================== */
.videos-section { padding: 110px 0; background: var(--dark); }
.videos-header { margin-bottom: 44px; }
.videos-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.video-item {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #111;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,0.3);
  /* Fix for iOS iframe rendering */
  -webkit-overflow-scrolling: touch;
}
.video-item iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.yt-consent {
  width: 100%; height: 100%;
  background: rgba(12, 12, 12, 0.45);
  backdrop-filter: blur(var(--glass-blur)) saturate(150%);
  -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(150%);
  border: 1px solid var(--glass-border);
  padding: 24px; text-align: center;
  display: flex; align-items: center; justify-content: center;
  position: absolute;
  top: 0; left: 0;
  z-index: 10;
  border-radius: var(--radius);
}
.yt-consent-inner {
  max-width: 440px;
  width: 100%;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.yt-consent-logo { color: #ff0000; opacity: 0.9; margin-bottom: 2px; }
.yt-consent-title {
  font-size: 1.05rem; font-weight: 700; color: var(--light); margin: 0;
}
.yt-consent-text {
  font-size: 0.78rem; color: #aaa; line-height: 1.45; margin: 0;
}
.yt-consent-text a { color: var(--light); text-decoration: underline; }
.yt-consent-remember {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.75rem; color: #888; cursor: pointer; margin-top: 2px;
}
.yt-consent-remember input { cursor: pointer; accent-color: #ff0000; width: 14px; height: 14px; }
.yt-consent-btn {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 6px;
  background: #ff0000; color: #fff; border: none;
  padding: 8px 20px; border-radius: 50px;
  font-size: 0.85rem; font-weight: 600;
  cursor: pointer; transition: background 0.2s, transform 0.15s;
}
.yt-consent-btn:hover { background: #cc0000; transform: translateY(-1px); }
.videos-cta {
  margin-top: 40px; text-align: center;
}
.videos-cta a {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--light); font-size: 0.85rem; letter-spacing: 0.04em;
  text-decoration: none; opacity: 0.55; transition: opacity 0.2s;
}
.videos-cta a:hover { opacity: 1; }

@media (max-width: 1024px) {
  .videos-grid { grid-template-columns: 1fr; }
  .videos-section { padding: 64px 0; }
  .video-item { aspect-ratio: auto; min-height: 400px; }
  .yt-consent { padding: 24px 20px; height: auto; min-height: 400px; }
  .yt-consent-inner { gap: 8px; max-width: 480px; }
  .yt-consent-logo { width: 32px; height: 32px; margin-bottom: 0; }
  .yt-consent-title { font-size: 1rem; margin-bottom: 4px; }
  .yt-consent-text { font-size: 0.85rem; line-height: 1.5; margin-bottom: 4px; }
  .yt-consent-btn { padding: 12px 24px; font-size: 0.9rem; margin-top: 8px; }
  .yt-consent-remember { margin-top: 6px; margin-bottom: 4px; font-size: 0.82rem; }
  .yt-consent-remember input { width: 16px; height: 16px; }
}

@media (max-width: 768px) {
  .video-item { min-height: 400px; }
  .yt-consent { padding: 16px; min-height: 400px; }
  .yt-consent-title { font-size: 0.95rem; }
  .yt-consent-text { font-size: 0.8rem; }
  .yt-consent-btn { font-size: 0.85rem; }
}

@media (max-width: 480px) {
  .video-item { min-height: 420px; }
  .yt-consent { min-height: 420px; }
}

/* ======================== FAQ (light) ======================== */
.faq-section {
  padding: 100px 0;
  background-color: #f0edd8;
}
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-top: 60px;
}
.faq-item {
  background: rgba(255,255,255,0.4);
  padding: 30px;
  border-radius: 12px;
}
.faq-question {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: #101010;
}
.faq-answer {
  color: #404040;
  line-height: 1.6;
}
@media (max-width: 991px) {
  .faq-grid { grid-template-columns: 1fr; gap: 24px; }
}

/* ======================== CONTACT (dark) ======================== */
.contact-section {
  display: grid; grid-template-columns: 1fr 1fr;
  background-color: var(--bg);
}
.contact-left {
  padding: 80px 72px 80px 48px;
  display: flex; flex-direction: column; justify-content: space-between; gap: 44px;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.contact-left-title {
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 700; letter-spacing: -0.035em; line-height: 1.1;
  color: var(--light); margin-bottom: 18px;
}
.contact-left-title em { font-style: italic; opacity: 0.45; }
.contact-left-body { font-size: 16px; color: var(--light); opacity: 0.7; 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(255,255,255,0.1); border-radius: var(--radius-sm);
  text-decoration: none; color: var(--light);
  transition: background 0.25s, border-color 0.25s, transform 0.25s;
}
.contact-item:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.22);
  transform: translateX(3px);
}
.contact-item-icon { font-size: 18px; flex-shrink: 0; color: var(--gold); }
.contact-item-meta {
  font-size: 10px; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(254,253,238,0.38); margin-bottom: 3px;
}
.contact-item-val { font-size: 15px; font-weight: 600; color: var(--light); }

.socials { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 25px; }
.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;
  color: var(--light); text-decoration: none;
  transition: all 0.25s ease;
}
.social-btn:hover {
  background: var(--light); color: #000 !important;
  transform: translateY(-1px);
}

/* Contact right: card on dark section */
.contact-right {
  background: var(--dark-surface); 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; }

/* ======================== MULTI-STEP FORM ======================== */
.multi-step-form .form-step { display: none; }
.multi-step-form .form-step.active { display: block; animation: fadeInForm 0.4s ease forwards; }
@keyframes fadeInForm { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
.step-title { font-size: 16px; font-weight: 700; color: var(--gold); margin-bottom: 20px; text-transform: uppercase; letter-spacing: 0.05em; border-bottom: 1px solid var(--glass-border); padding-bottom: 10px; }
.form-progress { height: 4px; background: var(--glass-border); border-radius: 2px; margin-top: 30px; overflow: hidden; }
.progress-bar-fill { height: 100%; background: var(--gold); transition: width 0.4s ease; }

/* ======================== STICKY CTA ======================== */
.sticky-cta {
  position: fixed; bottom: 20px; left: 20px; right: 20px; z-index: 1000;
  display: none;
}
@media (max-width: 767px) {
  .sticky-cta { display: block; animation: slideUpCTA 0.6s cubic-bezier(0.2, 0.8, 0.2, 1) 1s forwards; transform: translateY(100px); opacity: 0; }
  body { padding-bottom: 80px; } /* Space for CTA */
}
@keyframes slideUpCTA { to { transform: translateY(0); opacity: 1; } }
.sticky-cta-btn {
  background: var(--gold); color: #000; text-decoration: none;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  height: 56px; border-radius: 28px; font-weight: 700; font-size: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

/* ======================== SCROLL PROGRESS ======================== */
.scroll-progress {
  position: fixed; top: 0; left: 0; width: 0%; height: 3px;
  background: var(--gold); z-index: 1000; transition: width 0.1s linear;
}


/* ======================== 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 */
/* Laptop / Desktop Small */
@media (max-width: 1366px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
}

/* Tablet & Large Mobile */
@media (max-width: 1024px) {
  nav { padding: 0 32px; height: 60px; }
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .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; }
  .container { padding: 0 20px; }

  /* Landing Page Hero Mobile */
  .service-hero { padding-top: 100px !important; }
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-grid .hero-actions { justify-content: center; }
  .hero-image-col { display: none; }

  /* 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/5; }
  .team-card img { object-position: top center; }

  /* 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; }

  /* Mobile fixes and optimizations */
  .section-eyebrow { font-size: 10px; margin-bottom: 10px; }
  .section-title { margin-bottom: 20px; }
  .section-body { font-size: 16px; line-height: 1.6; }

  /* Hero adjustments for better mobile readability */
  .hero-sub { font-size: 15px; line-height: 1.6; color: rgba(254,253,238,0.8); }
  .hero-actions { flex-direction: column; width: 100%; max-width: 320px; margin: 0 auto; }
  .hero-actions .btn { width: 100%; margin: 0; }

  /* Footer adjustments */
  .footer-inner { gap: 24px; padding: 0 10px; }
  .footer-copyright { font-size: 13px; opacity: 0.6; }
  .footer-links { gap: 16px; flex-wrap: wrap; justify-content: center; }

  /* Reduce padding on sections for better vertical flow */
  .team-section, .gallery-section, .events-section, .services-section { padding: 64px 0; }
}

/* Override: stagger/gallery/video containers should not animate – only their children do */
.stagger.reveal,
.gallery-grid.reveal,
.videos-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: rgba(20, 20, 20, 0.75);
  backdrop-filter: blur(var(--glass-blur)) saturate(120%);
  -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(120%);
  border: 1px solid var(--glass-border);
  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); }
