/* ============================================================
   LUXS — style.css
   Luxury Editorial · Fashion & Beauty Production Agency
   ============================================================ */

/* ── Variables ── */
:root {
  --black:      #0A0A0A;
  --dark:       #141414;
  --mid:        #1C1C1C;
  --white:      #FFFFFF;
  --cream:      #F5F0E8;
  --cream-dark: #EDE6D6;
  --gold:       #B8975A;
  --gold-light: #D4B483;
  --gold-pale:  #EDD99A;
  --grey-mid:   #4A4A4A;
  --grey-light: #9A9A9A;
  --grey-pale:  #CACACA;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Montserrat', sans-serif;

  --container:  1200px;
  --radius:     2px;
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
  cursor: none;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
input, select, textarea, button { font-family: var(--font-body); }

/* ── Custom Cursor ── */
.cursor, .cursor-follower {
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s;
}
.cursor {
  width: 8px; height: 8px;
  background: var(--gold);
}
.cursor-follower {
  width: 36px; height: 36px;
  border: 1px solid var(--gold);
  opacity: 0.5;
  transition: width 0.3s, height 0.3s, opacity 0.3s;
}
.cursor.hover { background: var(--gold-light); transform: translate(-50%, -50%) scale(1.5); }
.cursor-follower.hover { width: 56px; height: 56px; opacity: 0.3; }
@media (hover: none) { .cursor, .cursor-follower { display: none; } body { cursor: auto; } }

/* ── Container ── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

/* ── Sections ── */
.section { padding: 120px 0; }

/* ── Scroll Reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── Typography ── */
.section-label {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 300;
  line-height: 1.1;
  color: var(--black);
  margin-bottom: 40px;
}
.section-title em {
  font-style: italic;
  color: var(--gold);
}

/* ── Buttons ── */
.btn {
  display: inline-block;
  padding: 14px 36px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  transition: var(--transition);
  cursor: none;
}
.btn-gold {
  background: var(--gold);
  color: var(--black);
}
.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}
.btn-ghost {
  border: 1px solid rgba(255,255,255,0.3);
  color: var(--white);
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}
.btn-full { width: 100%; text-align: center; }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 48px;
  transition: background 0.4s, padding 0.4s, backdrop-filter 0.4s;
}
.nav.scrolled {
  background: rgba(10,10,10,0.95);
  backdrop-filter: blur(12px);
  padding: 18px 48px;
  border-bottom: 1px solid rgba(184,151,90,0.2);
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 6px;
  color: var(--white);
  transition: color 0.3s;
}
.nav-logo:hover { color: var(--gold); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
}
.nav-link {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--grey-pale);
  transition: color 0.3s;
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.3s;
}
.nav-link:hover { color: var(--white); }
.nav-link:hover::after { transform: scaleX(1); }
.nav-link.nav-cta {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 8px 20px;
  letter-spacing: 2px;
}
.nav-link.nav-cta::after { display: none; }
.nav-link.nav-cta:hover {
  background: var(--gold);
  color: var(--black);
}
.nav-toggle { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 6px; padding: 4px; }
.nav-toggle span {
  display: block; width: 24px; height: 1px;
  background: var(--white);
  transition: var(--transition);
}
.nav-toggle.open span:first-child { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:last-child { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--black);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(10,10,10,0.85) 40%, rgba(10,10,10,0.4) 100%);
}
.hero-grain {
  position: absolute;
  inset: 0;
  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)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.6;
  pointer-events: none;
}
.hero-lines {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: space-evenly;
}
.h-line {
  width: 1px;
  height: 100%;
  background: rgba(184,151,90,0.08);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 48px;
  max-width: 900px;
  margin-top: 80px;
}
.hero-eyebrow {
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 0.8s 0.3s forwards;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(56px, 9vw, 120px);
  font-weight: 300;
  line-height: 1.0;
  margin-bottom: 32px;
  color: var(--white);
}
.title-line {
  display: block;
  opacity: 0;
  animation: fadeUp 0.9s forwards;
}
.title-line:nth-child(1) { animation-delay: 0.4s; }
.title-line:nth-child(2) { animation-delay: 0.55s; }
.title-line:nth-child(3) { animation-delay: 0.7s; }
.title-line:nth-child(4) { animation-delay: 0.85s; }
.title-line.italic { font-style: italic; }
.title-line.gold { color: var(--gold); }
.hero-sub {
  font-size: 14px;
  font-weight: 300;
  color: var(--grey-pale);
  line-height: 1.8;
  margin-bottom: 48px;
  opacity: 0;
  animation: fadeUp 0.8s 1s forwards;
}
.hero-actions {
  display: flex;
  gap: 20px;
  opacity: 0;
  animation: fadeUp 0.8s 1.1s forwards;
}
.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  z-index: 2;
}
.hero-scroll span {
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--grey-light);
  writing-mode: vertical-lr;
}
.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.2); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee-wrap {
  overflow: hidden;
  border-top: 1px solid rgba(184,151,90,0.25);
  border-bottom: 1px solid rgba(184,151,90,0.25);
  background: var(--dark);
  padding: 16px 0;
}
.marquee-track {
  display: flex;
  gap: 40px;
  white-space: nowrap;
  animation: marquee 30s linear infinite;
  width: max-content;
}
.marquee-track span {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--grey-light);
}
.marquee-track .dot { color: var(--gold); }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============================================================
   ABOUT
   ============================================================ */
.about { background: var(--cream); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.about .section-title { color: var(--black); }
.about-pillars { display: flex; flex-direction: column; gap: 28px; }
.pillar {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(0,0,0,0.1);
}
.pillar:last-child { border-bottom: none; }
.pillar-num {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}
.pillar h4 {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 6px;
}
.pillar p {
  font-size: 13px;
  color: var(--grey-mid);
  line-height: 1.6;
}
.about-text-block { margin-bottom: 32px; }
.about-body {
  font-size: 14px;
  color: var(--grey-mid);
  line-height: 1.9;
  margin-bottom: 16px;
}
.about-clients {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 40px;
}
.about-clients span {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 6px 14px;
}
.about-img-placeholder { margin-top: 8px; }
.img-frame {
  position: relative;
  padding: 12px;
  border: 1px solid rgba(0,0,0,0.12);
}
.img-frame img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center;
}

/* ============================================================
   SERVICES
   ============================================================ */
.services {
  position: relative;
  background: var(--black);
}
.services-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(184,151,90,0.06) 0%, transparent 60%);
}
.services-header {
  text-align: center;
  margin-bottom: 70px;
}
.services-header .section-title { color: var(--white); }
.services-note {
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--grey-light);
  text-transform: uppercase;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(184,151,90,0.15);
  position: relative;
  z-index: 1;
}
.service-card {
  background: var(--dark);
  padding: 40px 32px;
  transition: background var(--transition), transform var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.service-card:hover { background: var(--mid); }
.service-card:hover::before { transform: scaleX(1); }
.service-card--gold { background: rgba(184,151,90,0.08); }
.service-card--gold .service-name { color: var(--gold-light); }
.service-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 16px;
}
.service-num {
  font-family: var(--font-display);
  font-size: 14px;
  color: var(--grey-light);
}
.service-price {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--gold);
  font-weight: 500;
}
.service-price small { font-size: 13px; }
.service-name {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.2;
}
.service-divider {
  height: 1px;
  background: rgba(184,151,90,0.3);
  margin-bottom: 20px;
}
.service-crew {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 14px;
}
.service-crew span {
  font-size: 9px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--grey-light);
  background: rgba(255,255,255,0.05);
  padding: 4px 10px;
}
.service-detail {
  font-size: 12px;
  color: var(--grey-pale);
  margin-bottom: 6px;
  line-height: 1.6;
}
.service-tag {
  display: inline-block;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--black);
  background: var(--gold);
  padding: 4px 12px;
  margin-bottom: 16px;
}

/* ============================================================
   PROCESS
   ============================================================ */
.process { background: var(--cream); }
.process .section-title { color: var(--black); }
.process-header {
  max-width: 600px;
  margin-bottom: 80px;
}
.process-steps { display: flex; flex-direction: column; gap: 0; }
.process-step {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 40px;
  align-items: start;
  padding: 40px 0;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  transition: var(--transition);
}
.process-step:first-child { border-top: 1px solid rgba(0,0,0,0.08); }
.process-step:hover .step-num { color: var(--gold); }
.step-num {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 300;
  color: rgba(0,0,0,0.12);
  line-height: 1;
  transition: color var(--transition);
}
.step-content h3 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 400;
  color: var(--black);
  margin-bottom: 12px;
}
.step-content p {
  font-size: 14px;
  color: var(--grey-mid);
  line-height: 1.8;
  max-width: 580px;
}

/* ============================================================
   WORK
   ============================================================ */
.work {
  position: relative;
  background: var(--black);
}
.work-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(184,151,90,0.05) 0%, transparent 60%);
}
.work-header { margin-bottom: 60px; }
.work-header .section-title { color: var(--white); }
.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}
.work-card {
  display: flex;
  flex-direction: column;
}
.work-img {
  position: relative;
  overflow: hidden;
  margin-bottom: 20px;
  aspect-ratio: 3/2;
}
.work-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s ease;
  display: block;
}
.work-card:hover .work-img img { transform: scale(1.04); }
.work-category {
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
  display: block;
}
.work-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.3;
}
.work-desc {
  font-size: 13px;
  color: var(--grey-light);
  line-height: 1.7;
  margin-bottom: 16px;
}
.work-link {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 1px;
  color: var(--gold);
  text-transform: uppercase;
  transition: letter-spacing var(--transition);
}
.work-link:hover { letter-spacing: 3px; }
.work-note {
  text-align: center;
  font-size: 11px;
  color: var(--grey-light);
  margin-top: 60px;
  letter-spacing: 1px;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact { background: var(--cream); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact .section-title { color: var(--black); }
.contact-details { display: flex; flex-direction: column; gap: 24px; margin-top: 8px; }
.contact-item { display: flex; flex-direction: column; gap: 4px; }
.contact-label {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
}
.contact-value {
  font-size: 15px;
  color: var(--black);
  font-weight: 300;
}
a.contact-value:hover { color: var(--gold); }

/* Form */
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--grey-mid);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.12);
  padding: 14px 16px;
  font-size: 13px;
  font-weight: 300;
  color: var(--black);
  outline: none;
  transition: border-color var(--transition);
  appearance: none;
  border-radius: 0;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select { cursor: pointer; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--black);
  border-top: 1px solid rgba(184,151,90,0.2);
  padding: 60px 0 40px;
}
.footer-inner { text-align: center; }
.footer-logo {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 500;
  letter-spacing: 8px;
  color: var(--white);
  margin-bottom: 10px;
}
.footer-tagline {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
}
.footer-copy {
  font-size: 11px;
  color: var(--grey-light);
  line-height: 1.8;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 60px; }
  .contact-grid { grid-template-columns: 1fr; gap: 60px; }
}

@media (max-width: 768px) {
  .section { padding: 80px 0; }
  .container { padding: 0 20px; }

  .nav { padding: 20px 24px; }
  .nav.scrolled { padding: 14px 24px; }
  .nav-toggle { display: flex; }
  .nav-links {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(10,10,10,0.98);
    backdrop-filter: blur(20px);
    justify-content: center;
    align-items: center;
    gap: 32px;
    z-index: 800;
  }
  .nav-links.open { display: flex; }
  .nav-link { font-size: 12px; letter-spacing: 4px; }

  .hero-content { padding: 0 24px; }
  .hero-actions { flex-direction: column; }
  .hero-scroll { display: none; }

  .services-grid { grid-template-columns: 1fr; }
  .work-grid { grid-template-columns: 1fr; }
  .process-step { grid-template-columns: 60px 1fr; gap: 20px; }
  .step-num { font-size: 32px; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 44px; }
  .section-title { font-size: 36px; }
}
