/* ---------- DeeLux Digital Creations — Luxury Theme ---------- */

:root {
  --black: #0b0b0d;
  --black-soft: #151317;
  --burgundy: #5e0f22;
  --burgundy-light: #8a1a34;
  --gold: #c9a24a;
  --gold-light: #e6c877;
  --cream: #f6efe2;
  --cream-dim: #ddd0b5;

  --font-display: 'Cormorant Garamond', serif;
  --font-body: 'Jost', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--cream);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

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

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
}

.eyebrow {
  display: block;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-size: 0.75rem;
  font-weight: 500;
  margin-bottom: 14px;
}
.eyebrow.center { text-align: center; }

.section-title {
  font-size: clamp(1.9rem, 3.5vw, 2.75rem);
  color: var(--cream);
  margin-bottom: 20px;
}
.section-title.center { text-align: center; margin-left: auto; margin-right: auto; max-width: 700px; }

.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 2px;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--black);
}
.btn-primary:hover {
  background: var(--cream);
  transform: translateY(-2px);
}
.btn-outline {
  border-color: var(--gold);
  color: var(--cream);
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--black);
  transform: translateY(-2px);
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(11, 11, 13, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(201, 162, 74, 0.15);
}

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

.logo {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--cream);
  letter-spacing: 0.03em;
}
.logo span { color: var(--gold); }

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-desktop a {
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cream-dim);
  transition: color 0.25s ease;
}
.nav-desktop a:hover { color: var(--gold-light); }

.nav-cta {
  border: 1px solid var(--gold);
  padding: 10px 22px;
  color: var(--gold-light) !important;
}
.nav-cta:hover {
  background: var(--gold);
  color: var(--black) !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--gold);
  transition: all 0.3s ease;
}
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile {
  display: none;
  flex-direction: column;
  background: var(--black-soft);
  border-bottom: 1px solid rgba(201, 162, 74, 0.15);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.nav-mobile.active { max-height: 300px; }
.nav-mobile a {
  padding: 16px 24px;
  border-top: 1px solid rgba(201, 162, 74, 0.08);
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cream-dim);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 130px 0 110px;
  background:
    radial-gradient(ellipse at top right, rgba(94, 15, 34, 0.45), transparent 60%),
    radial-gradient(ellipse at bottom left, rgba(201, 162, 74, 0.08), transparent 55%),
    var(--black);
  text-align: center;
  overflow: hidden;
}
.hero-inner { max-width: 780px; margin: 0 auto; position: relative; z-index: 2; }

.hero h1 {
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  color: var(--cream);
  margin-bottom: 24px;
}
.hero h1 span {
  display: block;
  background: linear-gradient(120deg, var(--gold-light), var(--gold), var(--burgundy-light));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-sub {
  color: var(--cream-dim);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto 40px;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.hero-glow {
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(201, 162, 74, 0.12), transparent 70%);
  z-index: 1;
  pointer-events: none;
}

/* ---------- Strip ---------- */
.strip {
  background: var(--burgundy);
  padding: 18px 0;
  border-top: 1px solid rgba(201, 162, 74, 0.25);
  border-bottom: 1px solid rgba(201, 162, 74, 0.25);
}
.strip-inner {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px 40px;
}
.strip-inner span {
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-light);
}

/* ---------- Services ---------- */
.services { padding: 110px 0; background: var(--black); }

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: 60px;
}

.service-card {
  background: var(--black-soft);
  border: 1px solid rgba(201, 162, 74, 0.15);
  padding: 40px 28px;
  border-radius: 4px;
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
}
.service-icon {
  color: var(--gold);
  font-size: 1.6rem;
  margin-bottom: 18px;
}
.service-card h3 {
  font-size: 1.3rem;
  color: var(--cream);
  margin-bottom: 12px;
}
.service-card p {
  color: var(--cream-dim);
  font-size: 0.92rem;
}

/* ---------- How It Works ---------- */
.how {
  padding: 110px 0;
  background: linear-gradient(180deg, var(--black), var(--black-soft));
  border-top: 1px solid rgba(201, 162, 74, 0.15);
  border-bottom: 1px solid rgba(201, 162, 74, 0.15);
}

.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 60px;
}

.how-card {
  text-align: center;
  padding: 20px;
}

.how-number {
  width: 52px;
  height: 52px;
  margin: 0 auto 20px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  color: var(--gold-light);
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.how-card h3 {
  font-size: 1.3rem;
  color: var(--cream);
  margin-bottom: 12px;
}

.how-card p {
  color: var(--cream-dim);
  font-size: 0.92rem;
  max-width: 320px;
  margin: 0 auto;
}

/* ---------- Work ---------- */
.work {
  padding: 110px 0;
  background: linear-gradient(180deg, var(--black-soft), var(--black));
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
}

.work-card {
  aspect-ratio: 4 / 5;
  border-radius: 4px;
  background: linear-gradient(160deg, var(--burgundy) 0%, var(--black-soft) 65%);
  border: 1px solid rgba(201, 162, 74, 0.2);
  display: flex;
  align-items: flex-end;
  padding: 28px;
  position: relative;
  overflow: hidden;
  transition: transform 0.35s ease;
}
.work-card:hover { transform: scale(1.02); }
.work-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 20%, rgba(201, 162, 74, 0.18), transparent 60%);
}
.work-card-inner { position: relative; z-index: 2; }
.work-card-inner h3 {
  font-size: 1.4rem;
  color: var(--cream);
}
.work-card-inner p {
  color: var(--gold-light);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 4px;
}

/* ---------- About ---------- */
.about { padding: 110px 0; background: var(--black); }

.about-inner {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-text p {
  color: var(--cream-dim);
  margin-bottom: 16px;
  max-width: 520px;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.stat {
  text-align: center;
  background: var(--black-soft);
  border: 1px solid rgba(201, 162, 74, 0.15);
  padding: 28px 12px;
  border-radius: 4px;
}
.stat h3 {
  color: var(--gold);
  font-size: 2rem;
}
.stat p {
  color: var(--cream-dim);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 6px;
}

/* ---------- Contact ---------- */
.contact {
  padding: 120px 0;
  text-align: center;
  background:
    radial-gradient(ellipse at center, rgba(94, 15, 34, 0.5), transparent 65%),
    var(--black);
  border-top: 1px solid rgba(201, 162, 74, 0.15);
}
.contact-sub {
  color: var(--cream-dim);
  max-width: 480px;
  margin: 0 auto 36px;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--black-soft);
  border-top: 1px solid rgba(201, 162, 74, 0.15);
  padding: 40px 0;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.footer-inner p {
  color: var(--cream-dim);
  font-size: 0.82rem;
}
.socials {
  display: flex;
  gap: 16px;
}
.socials a {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(201, 162, 74, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  color: var(--gold-light);
  transition: all 0.25s ease;
}
.socials a:hover {
  background: var(--gold);
  color: var(--black);
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .about-inner { grid-template-columns: 1fr; }
  .about-stats { max-width: 480px; }
}

@media (max-width: 768px) {
  .nav-desktop { display: none; }
  .nav-toggle { display: flex; }
  .nav-mobile { display: flex; }

  .work-grid { grid-template-columns: 1fr; }
  .how-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero { padding: 100px 0 80px; }
  .services, .work, .about, .how { padding: 80px 0; }
  .contact { padding: 90px 0; }
}

@media (max-width: 560px) {
  .service-grid { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; text-align: center; }
  .hero-actions { flex-direction: column; align-items: center; }
  .btn { width: 100%; max-width: 280px; text-align: center; }
}
