/* ============================================================
   LUXORA DESIGNS — Design Tokens
   Palette: Deep navy + signature gold + warm ivory + electric violet jolt
   Type: Cormorant Garamond (display, used sparingly) / Space Grotesk (everything else)
   ============================================================ */
:root {
  --navy-950: #07080f;
  --navy-900: #0b0e1a;
  --navy-800: #11142a;
  --navy-700: #181c38;
  --ivory: #f8f6f1;
  --ivory-dim: #c9c5ba;
  --gold: #d4af6a;
  --gold-bright: #f0cf8e;
  --violet: #8b5cf6;
  --violet-dim: #6d4fc4;
  --slate: #9aa1b5;
  --line: rgba(248, 246, 241, 0.1);

  --font-display: "Cormorant Garamond", serif;
  --font-body: "Space Grotesk", sans-serif;

  --container: 1180px;
  --radius: 14px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--navy-900);
  color: var(--ivory);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
em { font-style: normal; color: var(--gold); }

::selection { background: var(--violet); color: var(--ivory); }

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}

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

/* ============ GRAIN OVERLAY ============ */
.grain {
  position: fixed; inset: 0; z-index: 999; pointer-events: none;
  opacity: 0.035; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ============ UTILITY ============ */
.section-tag {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 0.9rem;
}

.btn {
  display: inline-flex; align-items: center; gap: 0.55rem;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid transparent;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  white-space: nowrap;
}
.btn__icon { width: 19px; height: 19px; flex-shrink: 0; }
.btn--primary {
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  color: var(--navy-950);
  box-shadow: 0 8px 24px -8px rgba(212,175,106,0.55);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 12px 28px -8px rgba(212,175,106,0.7); }
.btn--ghost {
  background: transparent;
  color: var(--ivory);
  border-color: var(--line);
}
.btn--ghost:hover { background: rgba(248,246,241,0.06); border-color: rgba(248,246,241,0.25); }
.btn--lg { padding: 1.05rem 2.1rem; font-size: 1.02rem; }

/* ============ NAV ============ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(11,14,26,0.7);
  backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid var(--line);
}
.nav__inner {
  max-width: var(--container); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.95rem 1.5rem;
}
.nav__logo { display: flex; align-items: center; gap: 0.6rem; }
.nav__logo-img {
  width: 38px; height: 38px; border-radius: 8px;
  object-fit: contain;
  flex-shrink: 0;
}
.nav__logo-text {
  font-family: var(--font-display); font-weight: 600; font-size: 1.05rem;
  letter-spacing: 0.04em; line-height: 1;
}
.nav__logo-sub { display: block; font-size: 0.55rem; letter-spacing: 0.22em; color: var(--slate); font-family: var(--font-body); margin-top: 1px; }
.nav__links { display: flex; gap: 2rem; font-size: 0.92rem; color: var(--ivory-dim); }
.nav__links a { transition: color 0.2s; }
.nav__links a:hover { color: var(--gold-bright); }
.nav__cta {
  padding: 0.55rem 1.2rem; border-radius: 999px;
  background: var(--violet); color: var(--ivory); font-weight: 600; font-size: 0.88rem;
  transition: background 0.2s, transform 0.2s;
}
.nav__cta:hover { background: var(--violet-dim); transform: translateY(-1px); }

@media (max-width: 860px) {
  .nav__links { display: none; }
}

/* ============ HERO ============ */
.hero {
  position: relative;
  padding: 9.5rem 1.5rem 0;
  overflow: hidden;
}
.hero__bg-glow {
  position: absolute; top: -20%; left: 50%; transform: translateX(-50%);
  width: 900px; height: 900px;
  background: radial-gradient(circle, rgba(212,175,106,0.16), rgba(139,92,246,0.08) 45%, transparent 70%);
  filter: blur(40px);
  pointer-events: none;
}
.hero__inner {
  max-width: 880px; margin: 0 auto; text-align: center; position: relative; z-index: 2;
}
.hero__eyebrow {
  font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--slate); margin-bottom: 1.6rem;
}
.hero__title { line-height: 1.05; margin-bottom: 1.6rem; }
.hero__title-script {
  display: block;
  font-family: var(--font-display); font-style: italic; font-weight: 500;
  font-size: clamp(1.6rem, 3.4vw, 2.4rem);
  color: var(--gold-bright);
  margin-bottom: 0.2rem;
}
.hero__title-bold {
  display: block;
  font-family: var(--font-body); font-weight: 700;
  font-size: clamp(2.6rem, 6.4vw, 4.6rem);
  letter-spacing: -0.02em;
  color: var(--ivory);
}
.hero__sub {
  max-width: 560px; margin: 0 auto 2.6rem;
  color: var(--ivory-dim); font-size: 1.08rem; line-height: 1.6;
}
.hero__actions {
  display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap;
  margin-bottom: 3.2rem;
}
.hero__stats {
  display: flex; align-items: center; justify-content: center; gap: 2.2rem;
  flex-wrap: wrap; margin-bottom: 4rem;
}
.stat { text-align: center; }
.stat__num { display: block; font-family: var(--font-display); font-size: 1.9rem; font-weight: 700; color: var(--gold-bright); }
.stat__label { display: block; font-size: 0.76rem; color: var(--slate); letter-spacing: 0.04em; margin-top: 0.15rem; }
.stat__divider { width: 1px; height: 32px; background: var(--line); }

/* rotating ticker */
.ticker {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(212,175,106,0.06);
  overflow: hidden;
  padding: 0.9rem 0;
}
.ticker__track {
  display: flex; gap: 2.5rem; white-space: nowrap;
  animation: scroll-left 26s linear infinite;
  width: max-content;
}
.ticker__track span {
  font-family: var(--font-display); font-weight: 600; font-style: italic;
  font-size: 1.05rem; color: var(--gold);
  letter-spacing: 0.02em;
}
@keyframes scroll-left {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============ CLIENT MARQUEE ============ */
.clients { padding: 2.4rem 0; border-bottom: 1px solid var(--line); overflow: hidden; }
.clients__track {
  display: flex; gap: 2rem; white-space: nowrap; width: max-content;
  animation: scroll-left 32s linear infinite;
  font-size: 0.95rem; color: var(--slate); letter-spacing: 0.03em;
}
.clients__track span:nth-child(odd) { color: var(--ivory-dim); }

/* ============ ABOUT ============ */
.about { padding: 7rem 1.5rem; max-width: var(--container); margin: 0 auto; }
.about__inner { max-width: 720px; }
.about__heading {
  font-family: var(--font-body); font-weight: 700;
  font-size: clamp(1.8rem, 4vw, 2.6rem); line-height: 1.25;
  margin-bottom: 1.3rem; letter-spacing: -0.01em;
}
.about__body { color: var(--ivory-dim); font-size: 1.08rem; line-height: 1.7; max-width: 600px; }

/* ============ SERVICES ============ */
.services { padding: 5rem 1.5rem 7rem; max-width: var(--container); margin: 0 auto; }
.services__head { margin-bottom: 3rem; max-width: 600px; }
.services__heading {
  font-family: var(--font-body); font-weight: 700;
  font-size: clamp(1.8rem, 4vw, 2.6rem); letter-spacing: -0.01em;
}
.services__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem;
}
.service-card {
  background: var(--navy-800);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.9rem;
  transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}
.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(212,175,106,0.4);
  background: var(--navy-700);
}
.service-card--feature {
  background: linear-gradient(160deg, rgba(212,175,106,0.12), var(--navy-800));
  border-color: rgba(212,175,106,0.25);
}
.service-card__num {
  display: block; font-family: var(--font-display); font-style: italic;
  font-size: 0.95rem; color: var(--gold); margin-bottom: 1rem; font-weight: 600;
}
.service-card h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 0.5rem; }
.service-card p { color: var(--slate); font-size: 0.92rem; line-height: 1.55; }

@media (max-width: 860px) {
  .services__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .services__grid { grid-template-columns: 1fr; }
}

/* ============ WORK — HORIZONTAL SWIPE RAIL ============ */
.work { padding: 2rem 0 7rem; }
.work__head { max-width: var(--container); margin: 0 auto 2.6rem; padding: 0 1.5rem; }
.work__heading {
  font-family: var(--font-body); font-weight: 700;
  font-size: clamp(1.8rem, 4vw, 2.6rem); letter-spacing: -0.01em; margin-bottom: 0.6rem;
}
.work__hint { color: var(--slate); font-size: 0.92rem; }

.work__rail {
  display: flex; gap: 1.1rem;
  overflow-x: auto; scroll-snap-type: x mandatory;
  padding: 0 1.5rem 1.5rem;
  scrollbar-width: thin;
  scrollbar-color: var(--gold) transparent;
}
.work__rail::-webkit-scrollbar { height: 6px; }
.work__rail::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 4px; }
.work__rail::-webkit-scrollbar-track { background: var(--navy-800); }

.work__card {
  flex: 0 0 260px;
  scroll-snap-align: start;
  height: 320px;
  border-radius: var(--radius);
  padding: 1.6rem;
  display: flex; flex-direction: column; justify-content: flex-end;
  position: relative;
  background: linear-gradient(155deg, var(--c1), var(--c2));
  border: 1px solid rgba(255,255,255,0.08);
  transition: transform 0.3s ease;
}
.work__card:hover { transform: translateY(-6px); }
.work__card-tag {
  position: absolute; top: 1.3rem; left: 1.3rem;
  font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase;
  background: rgba(0,0,0,0.35); padding: 0.3rem 0.7rem; border-radius: 999px;
  backdrop-filter: blur(6px);
}
.work__card h4 { font-family: var(--font-display); font-size: 1.5rem; font-weight: 600; margin-bottom: 0.3rem; }
.work__card p { font-size: 0.86rem; color: rgba(255,255,255,0.75); }

/* ============ PRICING ============ */
.pricing { padding: 6rem 1.5rem 7rem; max-width: var(--container); margin: 0 auto; }
.pricing__head { text-align: center; margin-bottom: 3.2rem; }
.pricing__heading {
  font-family: var(--font-body); font-weight: 700;
  font-size: clamp(1.8rem, 4vw, 2.6rem); letter-spacing: -0.01em;
}
.pricing__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem;
  align-items: stretch;
}
.price-card {
  background: var(--navy-800);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2.2rem 1.8rem;
  display: flex; flex-direction: column;
  position: relative;
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.price-card:hover { transform: translateY(-4px); }
.price-card--featured {
  background: linear-gradient(165deg, rgba(139,92,246,0.18), var(--navy-800));
  border-color: var(--violet);
  transform: scale(1.03);
}
.price-card__badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--violet); color: var(--ivory);
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.05em;
  padding: 0.3rem 0.9rem; border-radius: 999px;
}
.price-card h3 { font-size: 1.05rem; color: var(--slate); font-weight: 600; margin-bottom: 0.7rem; text-transform: uppercase; letter-spacing: 0.06em; }
.price-card__amount {
  font-family: var(--font-display); font-weight: 700; font-size: 2.6rem;
  color: var(--gold-bright); margin-bottom: 0.3rem;
}
.price-card__amount span { font-size: 1.3rem; opacity: 0.6; }
.price-card__desc { color: var(--ivory-dim); font-size: 0.95rem; margin-bottom: 1.4rem; }
.price-card ul { list-style: none; margin-bottom: 1.8rem; flex-grow: 1; }
.price-card li {
  padding: 0.5rem 0; border-bottom: 1px solid var(--line);
  font-size: 0.92rem; color: var(--ivory-dim);
  display: flex; align-items: center; gap: 0.55rem;
}
.price-card li::before { content: "✓"; color: var(--gold); font-weight: 700; }
.price-card__cta {
  display: block; text-align: center;
  padding: 0.8rem; border-radius: 999px;
  background: rgba(248,246,241,0.06);
  border: 1px solid var(--line);
  font-weight: 600; font-size: 0.92rem;
  transition: background 0.2s, border-color 0.2s;
}
.price-card__cta:hover { background: var(--gold); color: var(--navy-950); border-color: var(--gold); }
.price-card--featured .price-card__cta { background: var(--violet); border-color: var(--violet); }
.price-card--featured .price-card__cta:hover { background: var(--violet-dim); }

.pricing__note {
  text-align: center; margin-top: 2.6rem; color: var(--slate); font-size: 0.94rem;
}
.pricing__note a { color: var(--gold-bright); text-decoration: underline; text-decoration-color: rgba(212,175,106,0.4); }

@media (max-width: 860px) {
  .pricing__grid { grid-template-columns: 1fr; }
  .price-card--featured { transform: none; }
}

/* ============ CTA BAND ============ */
.cta-band {
  margin: 0 1.5rem 6rem; max-width: var(--container); margin-inline: auto;
  background: linear-gradient(135deg, var(--navy-800), var(--navy-700));
  border: 1px solid rgba(212,175,106,0.25);
  border-radius: 24px;
  padding: 4.5rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 20%, rgba(139,92,246,0.18), transparent 50%);
  pointer-events: none;
}
.cta-band__inner { position: relative; z-index: 1; }
.cta-band h2 {
  font-family: var(--font-body); font-weight: 700;
  font-size: clamp(1.7rem, 4vw, 2.5rem); margin-bottom: 0.8rem; letter-spacing: -0.01em;
}
.cta-band p { color: var(--ivory-dim); margin-bottom: 2.2rem; font-size: 1.02rem; }
.cta-band__actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ============ FOOTER ============ */
.footer { border-top: 1px solid var(--line); padding: 3rem 1.5rem 2rem; }
.footer__inner {
  max-width: var(--container); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1.5rem;
  padding-bottom: 2rem; border-bottom: 1px solid var(--line);
}
.footer__brand { display: flex; align-items: center; gap: 0.6rem; }
.footer__brand-img { width: 34px; height: 34px; border-radius: 7px; object-fit: contain; }
.footer__brand-text { font-family: var(--font-display); font-weight: 600; letter-spacing: 0.06em; font-size: 1rem; }
.footer__links { display: flex; gap: 1.8rem; font-size: 0.92rem; color: var(--ivory-dim); }
.footer__links a:hover { color: var(--gold-bright); }

.footer__bottom {
  max-width: var(--container); margin: 1.6rem auto 0;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1rem;
  font-size: 0.84rem; color: var(--slate);
}
.footer__credit {
  display: inline-flex; align-items: center; gap: 0.45rem;
  color: var(--slate); transition: color 0.2s;
}
.footer__credit:hover { color: var(--gold-bright); }
.footer__credit-icon { width: 15px; height: 15px; }

/* ============ FLOATING WHATSAPP ============ */
.float-wa {
  position: fixed; bottom: 1.6rem; right: 1.6rem; z-index: 90;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px -6px rgba(37,211,102,0.6);
  color: var(--navy-950);
  transition: transform 0.25s ease;
}
.float-wa svg { width: 28px; height: 28px; }
.float-wa:hover { transform: scale(1.08); }

/* ============ RESPONSIVE ============ */
@media (max-width: 600px) {
  .hero { padding-top: 7.5rem; }
  .hero__actions { flex-direction: column; align-items: stretch; }
  .hero__actions .btn { justify-content: center; }
  .about, .services, .pricing { padding-left: 1.2rem; padding-right: 1.2rem; }
  .cta-band { margin-left: 1rem; margin-right: 1rem; padding: 3rem 1.4rem; }
  .cta-band__actions { flex-direction: column; }
  .footer__inner, .footer__bottom { flex-direction: column; align-items: flex-start; }
}