/* ============================================
   index.css — Homepage styles
   ============================================ */

/* HERO */
.hero {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-noise {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.3;
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(212,175,55,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212,175,55,0.03) 1px, transparent 1px);
  background-size: 80px 80px;
}
.orb {
  position: absolute; border-radius: 50%;
  filter: blur(120px); opacity: 0.08;
}
.orb1 { width: 700px; height: 700px; background: var(--gold); top: -200px; right: -150px; animation: orbDrift 12s ease-in-out infinite; }
.orb2 { width: 400px; height: 400px; background: #8b6914; bottom: -100px; left: 100px; animation: orbDrift 9s ease-in-out infinite 3s; }
@keyframes orbDrift {
  0%,100% { transform: translate(0,0); }
  50% { transform: translate(-40px, 40px); }
}

.hero-inner {
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 160px 60px 120px;
  max-width: 1300px;
  margin: 0 auto;
  width: 100%;
}

.hero-eyebrow {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 28px;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
}
.e-line { display: block; width: 24px; height: 1px; background: var(--gold); }

.hero-title {
  display: flex; flex-direction: column;
  font-family: var(--font-display);
  font-weight: 300;
  line-height: 1.05;
  margin-bottom: 24px;
}
.hero-title span {
  font-size: clamp(3rem, 5.5vw, 5.5rem);
  color: var(--cream);
  animation: heroLineIn 0.9s ease both;
}
.hero-title em {
  font-size: clamp(3.5rem, 6.5vw, 6.5rem);
  color: var(--gold);
  font-style: italic;
  animation: heroLineIn 0.9s ease both;
}
.hero-title em.light { color: rgba(212,175,55,0.5); }
.hero-title span:nth-child(1) { animation-delay: 0.1s; }
.hero-title em:nth-child(2) { animation-delay: 0.22s; }
.hero-title span:nth-child(3) { animation-delay: 0.34s; }
.hero-title em:nth-child(4) { animation-delay: 0.46s; }
@keyframes heroLineIn {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-body {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--muted);
  max-width: 500px;
  margin-bottom: 36px;
  animation: heroLineIn 0.9s ease 0.6s both;
}
.hero-actions {
  display: flex; gap: 14px; flex-wrap: wrap;
  animation: heroLineIn 0.9s ease 0.75s both;
}

/* Hero card stack */
.hero-right {
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.hero-card-stack {
  position: relative;
  width: 340px; height: 340px;
}
.hcard {
  position: absolute;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r2);
  padding: 18px 22px;
  display: flex; align-items: center; gap: 14px;
  box-shadow: var(--shadow);
  animation: cardFloat 6s ease-in-out infinite;
  transition: transform 0.3s;
}
.hcard:hover { transform: scale(1.05) !important; border-color: var(--border2); }
.hcard-icon { font-size: 1.8rem; flex-shrink: 0; }
.hcard strong { display: block; color: var(--cream); font-size: 0.92rem; font-weight: 600; }
.hcard span { font-size: 0.78rem; color: var(--muted); }
.hc1 { top: 0; left: 0; width: 220px; animation-delay: 0s; }
.hc2 { top: 80px; right: 0; width: 210px; animation-delay: 1.5s; }
.hc3 { bottom: 10px; left: 20px; width: 215px; animation-delay: 3s; }
.hcard-center {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 80px; height: 80px;
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  border-radius: 50%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  box-shadow: 0 0 40px rgba(212,175,55,0.4);
  z-index: 10;
}
.hc-diamond { font-size: 1.4rem; color: #000; }
.hcard-center p { font-size: 0.45rem; font-weight: 700; letter-spacing: 0.2em; color: #000; margin-top: 2px; }
@keyframes cardFloat {
  0%,100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-12px) rotate(1deg); }
}

/* TICKER */
.hero-ticker {
  position: relative; z-index: 2;
  border-top: 1px solid var(--border);
  padding: 14px 0;
  overflow: hidden;
  background: rgba(255,255,255,0.02);
}
.ticker-inner { overflow: hidden; }
.ticker-track {
  display: flex; gap: 36px; align-items: center;
  white-space: nowrap;
  width: max-content;
  animation: ticker 25s linear infinite;
}
.ticker-track span {
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
}
.ticker-track .bull { color: var(--gold); font-size: 0.6rem; }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* NUMBERS */
.numbers {
  background: var(--deep);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 60px;
}
.numbers-wrap {
  max-width: 1000px; margin: 0 auto;
  display: flex; align-items: center; justify-content: center; gap: 40px; flex-wrap: wrap;
}
.num-item { text-align: center; }
.n-val {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}
.n-suf {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--gold);
}
.num-item p {
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 6px;
}
.n-sep {
  color: rgba(212,175,55,0.25);
  font-size: 0.8rem;
}

/* SERVICES */
.services {
  padding: 120px 60px;
  max-width: 1200px;
  margin: 0 auto;
}
.services-head { margin-bottom: 60px; }
.services-head h2 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 300;
  color: var(--cream);
}
.services-head h2 em { font-style: italic; color: var(--gold); }
.svc-eyebrow { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.svc-eyebrow span:last-child {
  font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gold);
}

.svc-list { display: flex; flex-direction: column; }
.svc-row {
  display: grid;
  grid-template-columns: 80px 70px 1fr 60px;
  align-items: center;
  gap: 28px;
  padding: 36px 0;
  border-bottom: 1px solid var(--border);
  transition: all 0.3s;
  cursor: default;
}
.svc-row:first-child { border-top: 1px solid var(--border); }
.svc-row:hover { background: rgba(212,175,55,0.02); padding-left: 16px; padding-right: 16px; border-radius: var(--r); }
.svc-row:hover .svc-arrow { color: var(--gold); border-color: var(--gold); }
.svc-num-big {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--faint);
}
.svc-icon-wrap { font-size: 2.4rem; text-align: center; }
.svc-text h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 8px;
}
.svc-text p { font-size: 0.88rem; color: var(--muted); line-height: 1.7; }
.svc-arrow {
  width: 44px; height: 44px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  color: var(--faint);
  transition: all 0.3s;
  text-decoration: none;
  flex-shrink: 0;
  justify-self: end;
}

/* FEATURED */
.featured {
  padding: 120px 60px;
  background: var(--deep);
}
.featured-head { margin-bottom: 48px; }
.featured-head h2 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 300;
  color: var(--cream);
}
.featured-head h2 em { font-style: italic; color: var(--gold); }

.feat-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto 48px;
}
.feat-main, .feat-sm {
  position: relative;
  border-radius: var(--r2);
  overflow: hidden;
  cursor: none;
  transition: transform 0.4s;
}
.feat-main { min-height: 480px; }
.feat-sm { min-height: 220px; }
.feat-side { display: flex; flex-direction: column; gap: 20px; }

.feat-main:hover, .feat-sm:hover { transform: scale(1.015); }
.feat-main:hover .feat-hover,
.feat-sm:hover .feat-hover { opacity: 1; }

.feat-img {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
}
.feat-img span { font-size: 8rem; opacity: 0.6; }
.feat-sm .feat-img span { font-size: 5rem; }

.fi1 { background: linear-gradient(135deg, #1a140a, #2d2010); }
.fi2 { background: linear-gradient(135deg, #0a0d1a, #101828); }
.fi3 { background: linear-gradient(135deg, #0d0a14, #1a1220); }

.feat-info {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 28px;
  background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 100%);
  z-index: 2;
}
.feat-tag {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(212,175,55,0.3);
  padding: 4px 10px;
  border-radius: 2px;
  margin-bottom: 8px;
}
.feat-info h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 4px;
}
.feat-sm .feat-info h3 { font-size: 1.1rem; }
.feat-info p { font-size: 0.8rem; color: var(--muted); }

.feat-hover {
  position: absolute; inset: 0;
  background: rgba(212,175,55,0.08);
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
  z-index: 3;
  border: 1px solid rgba(212,175,55,0.2);
  border-radius: var(--r2);
}
.feat-hover span {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(0,0,0,0.6);
  padding: 12px 24px;
  border-radius: 2px;
}
.feat-cta { text-align: center; }

/* PROCESS */
.process {
  padding: 120px 60px;
  background: var(--black);
}
.process-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: start;
}
.proc-left h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  color: var(--cream);
  margin-bottom: 16px;
  line-height: 1.2;
}
.proc-left h2 em { font-style: italic; color: var(--gold); }
.proc-left p { font-size: 0.92rem; color: var(--muted); line-height: 1.75; }

.proc-right { display: flex; flex-direction: column; }
.proc-step {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 20px;
  align-items: start;
}
.proc-num {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--gold);
  opacity: 0.5;
  line-height: 1;
  padding-top: 4px;
}
.proc-body h4 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 8px;
}
.proc-body p { font-size: 0.88rem; color: var(--muted); line-height: 1.7; }
.proc-connector {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, rgba(212,175,55,0.3), transparent);
  margin: 16px 0 16px 30px;
}

/* TESTIMONIALS */
.testimonials {
  padding: 120px 60px;
  background: var(--surface);
  border-top: 1px solid var(--border);
}
.testi-head { margin-bottom: 60px; }
.testi-head h2 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 300;
  color: var(--cream);
}
.testi-head h2 em { font-style: italic; color: var(--gold); }

.testi-slider { max-width: 800px; }
.testi-cards {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  overflow: hidden;
}
.tcard {
  min-width: 100%;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r2);
  padding: 48px;
}
.tcard-quote {
  font-family: var(--font-display);
  font-size: 5rem;
  color: var(--gold);
  opacity: 0.3;
  line-height: 0.8;
  margin-bottom: 20px;
}
.tcard p {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 300;
  font-style: italic;
  color: var(--cream);
  line-height: 1.7;
  margin-bottom: 32px;
}
.tcard-author {
  display: flex; align-items: center; gap: 16px;
  border-top: 1px solid var(--border);
  padding-top: 24px;
}
.tcard-av {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; color: #000; font-size: 1rem;
  flex-shrink: 0;
}
.tcard-author strong { display: block; color: var(--cream); font-size: 0.92rem; }
.tcard-author span { font-size: 0.78rem; color: var(--muted); }

.testi-nav {
  display: flex; align-items: center; gap: 20px;
  margin-top: 28px;
}
.tn-btn {
  width: 44px; height: 44px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--muted);
  font-size: 1rem;
  transition: all 0.3s;
  cursor: none;
}
.tn-btn:hover { border-color: var(--gold); color: var(--gold); }
.testi-dots { display: flex; gap: 8px; align-items: center; }
.tdot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--border);
  transition: all 0.3s;
  cursor: none;
}
.tdot.active { background: var(--gold); transform: scale(1.3); }

/* RESPONSIVE */
@media (max-width: 1100px) {
  .hero-inner { grid-template-columns: 1fr; padding: 160px 24px 80px; }
  .hero-right { display: none; }
  .feat-grid { grid-template-columns: 1fr; }
  .feat-side { flex-direction: row; }
  .feat-main { min-height: 360px; }
  .feat-sm { min-height: 200px; }
}
@media (max-width: 900px) {
  .services, .featured, .process, .testimonials { padding: 80px 24px; }
  .numbers { padding: 50px 24px; }
  .process-inner { grid-template-columns: 1fr; gap: 60px; }
  .svc-row { grid-template-columns: 50px 50px 1fr 44px; gap: 16px; }
}
@media (max-width: 700px) {
  .feat-side { flex-direction: column; }
  .svc-row { grid-template-columns: 40px 1fr 40px; }
  .svc-num-big { display: none; }
  .numbers-wrap { gap: 24px; }
  .n-sep { display: none; }
}