/* ============================================
   BIGG SMOOV — biggsmoov.com
   Design System: Luxury Dark · Gold Accent
   ============================================ */

:root {
  --font-display: 'Cormorant Garamond', 'Cormorant SC', Georgia, serif;
  --font-display-sc: 'Cormorant SC', 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Switzer', 'Helvetica Neue', sans-serif;

  --color-bg: #0A0A0A;
  --color-surface: #111111;
  --color-surface-2: #161616;
  --color-border: #222222;
  --color-text: #E8E4DC;
  --color-text-muted: #9A958D;
  --color-text-faint: #3A3835;
  --color-gold: #C9A84C;
  --color-gold-dim: #8A6E2E;
  --color-gold-bright: #E8C96A;

  --text-xs: clamp(0.7rem, 0.65rem + 0.25vw, 0.8rem);
  --text-sm: clamp(0.8rem, 0.75rem + 0.25vw, 0.9rem);
  --text-base: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  --text-lg: clamp(1.125rem, 1rem + 0.6vw, 1.5rem);
  --text-xl: clamp(1.5rem, 1.2rem + 1.25vw, 2.25rem);
  --text-2xl: clamp(2.5rem, 1.5rem + 3vw, 5rem);
  --text-hero: clamp(3.5rem, 1rem + 8vw, 9rem);

  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;

  --transition: 220ms cubic-bezier(0.16, 1, 0.3, 1);
  --content-narrow: 680px;
  --content-default: 1000px;
  --content-wide: 1280px;
}

/* BASE */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-padding-top: 80px;
}
body {
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 300;
  line-height: 1.65;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; transition: color var(--transition); }
button { cursor: pointer; background: none; border: none; font: inherit; color: inherit; }

/* CONTAINERS */
.container { max-width: var(--content-wide); margin: 0 auto; padding: 0 var(--space-8); }
.container-narrow { max-width: var(--content-narrow); margin: 0 auto; padding: 0 var(--space-8); }

/* ============ NAV ============ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: var(--space-6) var(--space-8);
  transition: background var(--transition), padding var(--transition);
}
.nav.scrolled {
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(12px);
  padding: var(--space-4) var(--space-8);
  border-bottom: 1px solid var(--color-border);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  max-width: var(--content-wide); margin: 0 auto;
}
.nav-logo {
  font-family: var(--font-display-sc);
  font-size: var(--text-sm);
  font-weight: 500;
  letter-spacing: 0.3em;
  color: var(--color-gold);
}
.nav-links { display: flex; gap: var(--space-8); align-items: center; }
.nav-links a {
  font-size: var(--text-xs);
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}
.nav-links a:hover { color: var(--color-text); }
.nav-cta {
  color: var(--color-gold) !important;
  border: 1px solid var(--color-gold-dim);
  padding: var(--space-2) var(--space-6);
}
.nav-cta:hover { background: var(--color-gold); color: var(--color-bg) !important; }
.nav-menu-btn { display: none; flex-direction: column; gap: 5px; padding: var(--space-2); }
.nav-menu-btn span { display: block; width: 22px; height: 1px; background: var(--color-text); transition: var(--transition); }

/* MOBILE MENU */
.mobile-menu {
  display: none;
  position: fixed; inset: 0; z-index: 99;
  background: var(--color-bg);
  flex-direction: column; align-items: center; justify-content: center; gap: var(--space-8);
}
.mobile-menu.open { display: flex; }
.mobile-link {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--color-text);
}
.mobile-link:hover { color: var(--color-gold); }

/* ============ HERO ============ */
.hero {
  position: relative;
  height: 100vh; min-height: 600px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
}
.hero-bg img {
  width: 100%; height: 100%; object-fit: cover; object-position: center;
}
.hero-overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 35% at 50% 55%, rgba(10,10,10,0.72) 0%, transparent 100%),
    linear-gradient(to bottom,
      rgba(10,10,10,0.55) 0%,
      rgba(10,10,10,0.45) 40%,
      rgba(10,10,10,0.75) 80%,
      rgba(10,10,10,1) 100%
    );
}
.hero-content {
  position: relative; z-index: 2;
  text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: var(--space-4);
}
.hero-eyebrow {
  font-size: var(--text-xs);
  font-weight: 400;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--color-gold);
  opacity: 0.8;
}
.hero-wordmark {
  font-family: var(--font-display);
  font-size: var(--text-hero);
  font-weight: 600;
  letter-spacing: 0.12em;
  line-height: 1;
  /* Metallic: diagonal light sweep, refined — not exaggerated */
  background: linear-gradient(
    160deg,
    #EDD97A 0%,
    #C9A84C 30%,
    #A8832A 55%,
    #C9A84C 72%,
    #E0C060 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  /* Single subtle depth shadow — just enough to lift off the bg */
  filter:
    drop-shadow(0 2px 3px rgba(20,10,0,0.7))
    drop-shadow(0 0 20px rgba(201,168,76,0.08));
}
.hero-rule {
  width: 100%;
  height: 1px;
  background: var(--color-gold);
  opacity: 0.5;
  margin: var(--space-1) 0;
}
.hero-tagline {
  font-family: var(--font-display-sc);
  font-size: var(--text-sm);
  font-weight: 300;
  letter-spacing: 0.45em;
  color: var(--color-gold);
  opacity: 0.9;
  text-shadow:
    0 0 30px rgba(10,10,10,1),
    0 0 60px rgba(10,10,10,1),
    0 2px 8px rgba(10,10,10,1),
    -2px 0 12px rgba(10,10,10,0.95),
    2px 0 12px rgba(10,10,10,0.95);
}
.hero-cta {
  margin-top: var(--space-8);
  font-size: var(--text-xs);
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-text);
  border: 1px solid rgba(201,168,76,0.4);
  padding: var(--space-4) var(--space-10);
  transition: all var(--transition);
}
.hero-cta:hover {
  background: var(--color-gold);
  color: var(--color-bg);
  border-color: var(--color-gold);
}
.hero-scroll {
  position: absolute; bottom: var(--space-8); left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: var(--space-3);
  z-index: 2;
}
.hero-scroll span {
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}
.hero-scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--color-gold-dim), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.2); }
}

/* ============ STATEMENT ============ */
.statement {
  padding: clamp(var(--space-10), 6vw, var(--space-20)) var(--space-8);
  text-align: center;
}
.statement-text {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 300;
  font-style: italic;
  line-height: 1.7;
  color: #B8B2A8;
  max-width: 58ch;
  margin: 0 auto;
}

/* ============ SECTION HEADERS ============ */
.section-label {
  display: block;
  font-size: var(--text-xs);
  font-weight: 400;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: var(--space-3);
}
.section-label--light { color: var(--color-gold-bright); }
.section-header { margin-bottom: var(--space-12); }
.section-title {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--color-text);
  line-height: 1.1;
}

/* ============ SOUND ============ */
.sound {
  padding: clamp(var(--space-16), 8vw, var(--space-32)) 0;
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}
.sound-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
  align-items: center;
}
.sound-placeholder {
  aspect-ratio: 4/3;
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
  display: flex; align-items: center; justify-content: center;
  width: 100%;
  max-width: 100%;
  position: relative;
  overflow: hidden;
}
.sound-placeholder::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 40% 50%, rgba(201,168,76,0.06) 0%, transparent 70%);
}
.sound-placeholder-inner { text-align: center; padding: var(--space-8); }
.sound-icon { width: 56px; height: 56px; margin: 0 auto var(--space-6); color: var(--color-gold-dim); }
.sound-placeholder-text {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 300;
  color: var(--color-text-muted);
  margin-bottom: var(--space-2);
}
.sound-placeholder-sub {
  font-size: var(--text-xs);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-text-faint);
}
.sound-mix-title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 400;
  letter-spacing: 0.08em;
  margin-bottom: var(--space-4);
}
.sound-mix-desc {
  color: #ABA59C;
  font-weight: 300;
  margin-bottom: var(--space-6);
  max-width: 45ch;
}
.sound-tags { display: flex; flex-wrap: wrap; gap: var(--space-2); margin-bottom: var(--space-8); }
.tag {
  font-size: var(--text-xs);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  border: 1px solid var(--color-border);
  padding: var(--space-1) var(--space-4);
}
.sound-link {
  font-size: var(--text-sm);
  letter-spacing: 0.1em;
  color: var(--color-gold);
}
.sound-link:hover { color: var(--color-gold-bright); }

/* ============ PHOTO DIVIDER ============ */
.photo-divider {
  position: relative;
  height: 60vh; min-height: 380px;
  overflow: hidden;
}
.photo-divider img {
  width: 100%; height: 100%; object-fit: cover;
  object-position: center 20%;
}
.photo-divider-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, var(--color-bg), transparent 30%, transparent 70%, var(--color-bg));
}

/* ============ WORK ============ */
.work { padding: clamp(var(--space-16), 8vw, var(--space-32)) 0; }
.work-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: var(--space-4);
}
.work-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  overflow: hidden;
}
.work-card--wide {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, var(--color-surface) 0%, #0F0F0F 100%);
  border: 1px solid rgba(201,168,76,0.15);
}
.work-card-img { aspect-ratio: 4/3; overflow: hidden; }
.work-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s ease;
}
.work-card:hover .work-card-img img { transform: scale(1.03); }
.work-card-img--dark img { object-position: center 15%; }
.work-card-body { padding: var(--space-8); }
.work-card-label {
  font-size: var(--text-xs);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: var(--space-3);
}
.work-card-title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 400;
  margin-bottom: var(--space-3);
  letter-spacing: 0.05em;
}
.work-card-desc { color: #ABA59C; font-weight: 300; font-size: var(--text-sm); }
.work-services {
  display: flex; flex-wrap: wrap; gap: var(--space-3);
}
.work-services span {
  font-size: var(--text-xs);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #ABA59C;
  padding: var(--space-3) var(--space-6);
  border: 1px solid rgba(201,168,76,0.2);
  transition: all var(--transition);
}
.work-services span:hover { border-color: var(--color-gold); color: var(--color-gold); }

/* ============ ABOUT ============ */
.about {
  padding: clamp(var(--space-16), 8vw, var(--space-32)) 0;
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
  max-width: var(--content-wide);
  margin: 0 auto;
  padding: 0 var(--space-8);
}
.about-grid--text-only {
  grid-template-columns: 1fr;
  max-width: 720px;
  text-align: left;
}
.about-grid--text-only .about-text { max-width: 60ch; }
.about-grid--text-only .about-title { font-size: var(--text-2xl); }
.about-img { aspect-ratio: 3/4; overflow: hidden; }
.about-img img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.about-title {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1.1;
  margin-bottom: var(--space-8);
}
.about-text {
  color: #ABA59C;
  font-weight: 300;
  margin-bottom: var(--space-6);
  max-width: 48ch;
}
.about-rule {
  width: 48px; height: 1px;
  background: var(--color-gold);
  margin: var(--space-8) 0;
}
.about-quote {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-style: italic;
  font-weight: 300;
  color: #C0BAB0;
}

/* ============ BOOKING ============ */
.booking {
  position: relative;
  padding: clamp(var(--space-20), 10vw, var(--space-32)) 0;
  text-align: center;
  overflow: hidden;
}
.booking-bg {
  position: absolute; inset: 0;
}
.booking-bg img { width: 100%; height: 100%; object-fit: cover; }
.booking-overlay {
  position: absolute; inset: 0;
  background: rgba(10,10,10,0.88);
}
.booking-content { position: relative; z-index: 2; }
.booking-title {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--color-gold);
  margin-bottom: var(--space-6);
}
.booking-sub {
  font-weight: 300;
  color: #ABA59C;
  max-width: 52ch;
  margin: 0 auto var(--space-12);
}
.booking-contacts {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-8);
  flex-wrap: wrap;
}
.booking-contact {
  display: flex; flex-direction: column; align-items: center; gap: var(--space-2);
}
.booking-contact-label {
  font-size: var(--text-xs);
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--color-gold);
  opacity: 0.7;
}
.booking-contact-value {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 400;
  color: var(--color-text);
  letter-spacing: 0.05em;
  transition: color var(--transition);
}
.booking-contact:hover .booking-contact-value { color: var(--color-gold); }
.booking-divider {
  width: 1px; height: 48px;
  background: var(--color-border);
}

/* ============ FOOTER ============ */
.footer {
  padding: var(--space-10) 0;
  border-top: 1px solid var(--color-border);
}
.footer-inner {
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: var(--space-4);
}
.footer-mark {
  font-family: var(--font-display-sc);
  font-size: var(--text-sm);
  font-weight: 500;
  letter-spacing: 0.3em;
  color: var(--color-gold);
}
.footer-copy {
  font-size: var(--text-xs);
  color: var(--color-text-faint);
  letter-spacing: 0.05em;
}
.footer-links { display: flex; gap: var(--space-6); }
.footer-links a {
  font-size: var(--text-xs);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}
.footer-links a:hover { color: var(--color-gold); }

/* ============ RESPONSIVE ============ */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-menu-btn { display: flex; }
  .sound-grid { grid-template-columns: 1fr; }
  .sound-placeholder { max-width: 100%; aspect-ratio: 16/9; }
  .work-grid { grid-template-columns: 1fr; }
  .work-card--wide { grid-column: 1; }
  .about-grid { grid-template-columns: 1fr; gap: var(--space-8); }
  .about-img { aspect-ratio: 16/9; }
  .booking-contacts { flex-direction: column; gap: var(--space-6); }
  .booking-divider { width: 48px; height: 1px; }
  .footer-inner { flex-direction: column; text-align: center; }
}

@media (max-width: 600px) {
  .hero-wordmark { letter-spacing: 0.06em; }
  .container, .container-narrow { padding: 0 var(--space-6); }
}
