/* ========================================================================
   Variables
   ======================================================================== */

:root {
  /* Colors */
  --color-bg: #0B0F14; /* primary background */
  --color-bg-secondary: #151A22; /* section background */
  --color-bg-elevated: #1C222C; /* cards, nav */

  --color-text: #F3EFE7; /* primary text */
  --color-text-muted: #B3AFA5;
  --color-heading: #D4AF37; /* electric gold */

  --color-primary: #FFB020; /* CTA / primary */
  --color-primary-hover: #C77700;
  --color-accent: #2EC4B6; /* cool cyan accents */

  --color-success: #2ECC71;
  --color-warning: #FFB020;
  --color-danger: #FF4D4F;

  --color-neutral-50: #F8FAFC;
  --color-neutral-100: #E5E7EB;
  --color-neutral-200: #D1D5DB;
  --color-neutral-300: #9CA3AF;
  --color-neutral-400: #6B7280;
  --color-neutral-500: #4B5563;
  --color-neutral-600: #374151;
  --color-neutral-700: #1F2933;
  --color-neutral-800: #111827;
  --color-neutral-900: #030712;

  --color-border-subtle: rgba(243, 239, 231, 0.08);
  --color-border-strong: rgba(243, 239, 231, 0.18);
  --color-glow-purple: #7A5CFF;

  /* Typography */
  --font-sans: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-display: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

  --text-xs: 0.75rem;   /* 12px */
  --text-sm: 0.875rem;  /* 14px */
  --text-base: 1rem;    /* 16px */
  --text-lg: 1.125rem;  /* 18px */
  --text-xl: 1.25rem;   /* 20px */
  --text-2xl: 1.5rem;   /* 24px */
  --text-3xl: 1.875rem; /* 30px */
  --text-4xl: 2.25rem;  /* 36px */
  --text-5xl: 3rem;     /* 48px */

  --leading-tight: 1.15;
  --leading-snug: 1.3;
  --leading-normal: 1.5;

  /* Spacing scale (px) */
  --space-0: 0;
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 20px;
  --space-6: 24px;
  --space-8: 32px;
  --space-10: 40px;
  --space-12: 48px;
  --space-16: 64px;
  --space-20: 80px;
  --space-24: 96px;

  /* Radius */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-full: 999px;

  /* Shadows / Glows */
  --shadow-soft: 0 18px 45px rgba(0, 0, 0, 0.6);
  --shadow-strong: 0 28px 80px rgba(0, 0, 0, 0.85);
  --shadow-glow-amber: 0 0 22px rgba(255, 176, 32, 0.6);
  --shadow-glow-purple: 0 0 28px rgba(122, 92, 255, 0.7);

  /* Transitions */
  --ease-standard: cubic-bezier(0.22, 0.61, 0.36, 1);
  --transition-fast: 150ms var(--ease-standard);
  --transition-base: 220ms var(--ease-standard);
  --transition-slow: 380ms var(--ease-standard);

  /* Layout */
  --container-max-width: 1140px;
  --container-padding-x: 20px;
}

/* Reduce motion preference */
@media (prefers-reduced-motion: reduce) {
  :root {
    --transition-fast: 0ms;
    --transition-base: 0ms;
    --transition-slow: 0ms;
  }
}


/* ========================================================================
   Reset / Normalize
   ======================================================================== */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

ul,
ol {
  margin: 0;
  padding: 0;
}

img,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
}

button {
  border: none;
  padding: 0;
  background: none;
}

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

[hidden] {
  display: none !important;
}

body {
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}


/* ========================================================================
   Base styles
   ======================================================================== */

body {
  min-height: 100vh;
  font-family: var(--font-sans);
  font-size: var(--text-base);
  line-height: var(--leading-normal);
  color: var(--color-text);
  background-color: var(--color-bg);
  background-image: radial-gradient(circle at 0% 0%, rgba(122, 92, 255, 0.18) 0, transparent 55%),
                    radial-gradient(circle at 100% 100%, rgba(46, 196, 182, 0.14) 0, transparent 52%);
}

main {
  display: block;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: var(--leading-tight);
  color: var(--color-heading);
  letter-spacing: 0.02em;
}

h1 { font-size: clamp(2.4rem, 3.4vw, 3.2rem); margin-bottom: var(--space-4); }

h2 { font-size: clamp(2rem, 2.6vw, 2.4rem); margin-bottom: var(--space-4); }

h3 { font-size: clamp(1.5rem, 2.1vw, 1.8rem); margin-bottom: var(--space-3); }

h4 { font-size: 1.25rem; margin-bottom: var(--space-2); }

p {
  margin-bottom: var(--space-4);
  color: var(--color-text);
}

p:last-child {
  margin-bottom: 0;
}

strong {
  font-weight: 600;
}

small {
  font-size: var(--text-sm);
}

code,
pre {
  font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

hr {
  border: 0;
  border-top: 1px solid var(--color-border-subtle);
  margin: var(--space-6) 0;
}


/* Links */

a {
  position: relative;
  color: var(--color-accent);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--color-primary);
}

a[href^="tel"],
a[href^="mailto"] {
  white-space: nowrap;
}


/* ========================================================================
   Accessibility & Focus styles
   ======================================================================== */

:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 3px;
}

*:focus {
  outline: none;
}

/* Screen reader only */
.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;
}


/* ========================================================================
   Utilities
   ======================================================================== */

/* Layout */

.container {
  width: 100%;
  max-width: var(--container-max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--container-padding-x);
  padding-right: var(--container-padding-x);
}

.section {
  padding-top: var(--space-16);
  padding-bottom: var(--space-16);
}

.section--alt {
  background-color: var(--color-bg-secondary);
}

.section-header {
  margin-bottom: var(--space-8);
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: var(--space-3);
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--color-text-muted);
}

.section-eyebrow::before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 1px;
  background: linear-gradient(90deg, var(--color-glow-purple), transparent);
}

/* Flex helpers */

.flex { display: flex; }

.inline-flex { display: inline-flex; }

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.flex-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.flex-column { flex-direction: column; }

.flex-wrap { flex-wrap: wrap; }

.gap-2 { gap: var(--space-2); }

.gap-4 { gap: var(--space-4); }

.gap-6 { gap: var(--space-6); }

/* Grid helpers */

.grid { display: grid; }

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-6);
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-6);
}

@media (max-width: 900px) {
  .grid-2,
  .grid-3 {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* Alignment & spacing utilites (minimal set for layout) */

.text-center { text-align: center; }

.text-right { text-align: right; }

.mt-0 { margin-top: 0; }

.mt-4 { margin-top: var(--space-4); }

.mt-6 { margin-top: var(--space-6); }

.mb-0 { margin-bottom: 0; }

.mb-4 { margin-bottom: var(--space-4); }

.mb-6 { margin-bottom: var(--space-6); }

.py-6 {
  padding-top: var(--space-6);
  padding-bottom: var(--space-6);
}

.px-4 {
  padding-left: var(--space-4);
  padding-right: var(--space-4);
}


/* Media & image helpers */

.media-cover {
  position: relative;
  overflow: hidden;
}

.media-cover img,
.media-cover video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-overlay-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 15, 20, 0.1) 0%, rgba(11, 15, 20, 0.95) 100%);
}


/* ========================================================================
   Components
   ======================================================================== */

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0.875rem 1.7rem;
  border-radius: var(--radius-full);
  border: 1px solid transparent;
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
  transition:
    background-color var(--transition-base),
    color var(--transition-base),
    border-color var(--transition-base),
    box-shadow var(--transition-base),
    transform var(--transition-fast);
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-primary), #ffe089);
  color: #160f02 !important;
  box-shadow: var(--shadow-glow-amber);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--color-primary-hover), #ffc75a);
  box-shadow: var(--shadow-glow-amber), 0 18px 38px rgba(0, 0, 0, 0.9);
  transform: translateY(-1px);
}

.btn-outline {
  background-color: transparent;
  color: var(--color-text);
  border-color: rgba(243, 239, 231, 0.5);
}

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

.btn-ghost {
  background-color: rgba(21, 26, 34, 0.85);
  color: var(--color-text);
  border-color: rgba(243, 239, 231, 0.08);
}

.btn-ghost:hover {
  background-color: rgba(28, 34, 44, 0.98);
  border-color: rgba(255, 176, 32, 0.6);
}

.btn-icon {
  padding-inline: 1rem;
}

.btn[disabled],
.btn:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  box-shadow: none;
}

.btn:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 3px;
}


/* Inputs & forms */

.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: var(--space-4);
}

.field label {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

.input,
.textarea,
.select {
  width: 100%;
  padding: 0.7rem 0.9rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border-subtle);
  background-color: rgba(15, 20, 29, 0.9);
  color: var(--color-text);
  font-size: var(--text-sm);
  transition:
    border-color var(--transition-fast),
    box-shadow var(--transition-fast),
    background-color var(--transition-fast);
}

.textarea {
  min-height: 140px;
  resize: vertical;
}

.input::placeholder,
.textarea::placeholder {
  color: rgba(179, 175, 165, 0.7);
}

.input:focus-visible,
.textarea:focus-visible,
.select:focus-visible {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 1px rgba(46, 196, 182, 0.7);
  background-color: rgba(21, 26, 34, 0.98);
}

.input[disabled],
.textarea[disabled],
.select[disabled] {
  opacity: 0.6;
  cursor: not-allowed;
}

.field-error {
  margin-top: 4px;
  font-size: var(--text-xs);
  color: var(--color-danger);
}


/* Cards (service / experience cards, testimonials, etc.) */

.card {
  position: relative;
  border-radius: var(--radius-lg);
  background: radial-gradient(circle at 0 0, rgba(122, 92, 255, 0.18), transparent 58%),
              radial-gradient(circle at 100% 100%, rgba(255, 176, 32, 0.16), transparent 55%),
              var(--color-bg-elevated);
  border: 1px solid var(--color-border-subtle);
  box-shadow: var(--shadow-soft);
  padding: var(--space-6);
  overflow: hidden;
  transition:
    transform var(--transition-base),
    box-shadow var(--transition-base),
    border-color var(--transition-base),
    background var(--transition-slow);
}

.card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.55), rgba(122, 92, 255, 0.4));
  opacity: 0;
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
  transition: opacity var(--transition-base);
}

.card:hover {
  transform: translateY(-4px);
  border-color: var(--color-border-strong);
  box-shadow: var(--shadow-strong);
}

.card:hover::before {
  opacity: 0.9;
}

.card-header {
  margin-bottom: var(--space-4);
}

.card-title {
  font-size: var(--text-xl);
  margin-bottom: var(--space-2);
}

.card-meta {
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--color-text-muted);
}

.card-body {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

.card-footer {
  margin-top: var(--space-4);
}


/* Hero overlay chip (for key messages like "100% entertainment only") */

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  background: radial-gradient(circle at 0 0, rgba(122, 92, 255, 0.7), rgba(11, 15, 20, 0.98));
  border: 1px solid rgba(243, 239, 231, 0.26);
  font-size: var(--text-xs);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text);
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--color-accent) 0, transparent 70%);
}


/* Navigation shell */

.navbar {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(12px);
  background: linear-gradient(90deg, rgba(11, 15, 20, 0.96), rgba(11, 15, 20, 0.9));
  border-bottom: 1px solid rgba(243, 239, 231, 0.08);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.navbar-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: var(--text-sm);
}

.navbar-link {
  position: relative;
  color: var(--color-text-muted);
  text-decoration: none;
  padding: 4px 0;
  transition: color var(--transition-fast);
}

.navbar-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-glow-purple));
  transition: width var(--transition-fast);
}

.navbar-link:hover {
  color: var(--color-text);
}

.navbar-link:hover::after,
.navbar-link.is-active::after {
  width: 100%;
}

.navbar-link.is-active {
  color: var(--color-primary);
}

@media (max-width: 900px) {
  .navbar-inner {
    height: 64px;
  }
}


/* FAQ accordion shell */

.faq-item {
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border-subtle);
  background-color: rgba(21, 26, 34, 0.95);
  padding: var(--space-4);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  cursor: pointer;
}

.faq-answer {
  margin-top: var(--space-3);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}


/* Testimonials quote style */

.quote {
  position: relative;
  padding-left: var(--space-4);
  border-left: 2px solid rgba(212, 175, 55, 0.7);
  color: var(--color-text);
  font-size: var(--text-lg);
}

.quote::before {
  content: "\201C";
  position: absolute;
  left: -14px;
  top: -10px;
  font-size: 3rem;
  line-height: 1;
  color: rgba(212, 175, 55, 0.35);
}


/* Gallery helpers */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-4);
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  border: 1px solid rgba(243, 239, 231, 0.1);
}

.gallery-item img {
  transition: transform var(--transition-slow), filter var(--transition-slow);
}

.gallery-item:hover img {
  transform: scale(1.05);
  filter: saturate(1.08);
}


/* Motion preference: turn off decorative transitions if reduced */

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
