
Copy

/* ═══ INDEX PAGE STYLES ═══ */
/* Font is inherited from shared.css — Outfit + Space Mono */
 
/* ── HERO ── */
.hero {
  min-height: 100vh;
  padding: calc(var(--nav-h) + 60px) 32px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}
.hero-bg {
  position: fixed; inset: 0; z-index: -1; overflow: hidden;
  background: var(--cream);
}
.hero-mesh {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 800px 600px at 70% 30%, rgba(201,168,76,0.06) 0%, transparent 60%),
    radial-gradient(ellipse 600px 500px at 20% 80%, rgba(201,168,76,0.04) 0%, transparent 55%);
}
.hero-lines {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.05) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse at 70% 30%, black 30%, transparent 70%);
}
.hero-canvas { position: absolute; inset: 0; opacity: 0.35; }
 
.hero-content { position: relative; z-index: 1; }
.hero-tag {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 11px; font-weight: 700; letter-spacing: 4px; text-transform: uppercase;
  color: var(--gold-dark); margin-bottom: 24px;
  padding: 8px 16px; background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.2); border-radius: 100px;
}
.hero-h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 5rem);
  font-weight: 900; line-height: 1.1;
  letter-spacing: -2px;
  color: var(--dark); margin-bottom: 28px;
}
.hero-h1 em { font-style: italic; color: var(--gold-dark); font-weight: 300; letter-spacing: -0.5px; }
.hero-p { font-size: 15px; color: var(--text-mid); line-height: 1.8; margin-bottom: 40px; font-weight: 400; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
 
.hero-img-wrap {
  position: relative; z-index: 1;
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hero-img {
  width: 100%; height: 520px; object-fit: cover; display: block;
  filter: sepia(15%) contrast(1.05);
  transition: transform 0.6s ease;
}
.hero-img-wrap:hover .hero-img { transform: scale(1.03); }
.hero-img-glow {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(201,168,76,0.10) 0%, transparent 60%);
  pointer-events: none;
}
 
.hero-scroll {
  position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  font-size: 10px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--text-light); font-family: var(--font-mono);
}
.scroll-line {
  width: 1px; height: 60px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse { 0%,100%{opacity:0.4} 50%{opacity:1} }
 
/* ── MISSION ── */
.mission { padding: 120px 32px; }
.mission-left p { font-size: 15px; color: var(--text-mid); line-height: 1.8; }
 
/* ── GATEWAY ── */
.gateway { padding: 120px 32px; background: var(--warm-white); }
.gateway-bg {
  position: absolute; inset: 0;
  background: repeating-linear-gradient(
    45deg, transparent, transparent 60px,
    rgba(201,168,76,0.02) 60px, rgba(201,168,76,0.02) 61px
  );
}
.gateway-p { font-size: 15px; color: var(--text-mid); line-height: 1.8; max-width: 680px; margin: 0 auto 40px; }
 
/* ── SERVICES PREVIEW ── */
.services-preview { padding: 100px 32px; }
.section-header {
  display: flex; align-items: flex-start; justify-content: space-between; gap: 60px;
  margin-bottom: 8px;
}
.section-header p { font-size: 13px; color: var(--text-mid); letter-spacing: 1px; margin-top: 8px; }
.svc-img { width: 280px; height: 200px; object-fit: cover; border-radius: var(--radius); flex-shrink: 0; filter: sepia(20%); }
 
/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: calc(var(--nav-h) + 48px) 24px 60px;
    text-align: center;
  }
  .hero-btns { justify-content: center; }
  .hero-img { height: 300px; }
  .hero-scroll { display: none; }
  .mission { padding: 80px 24px; }
  .gateway { padding: 80px 24px; }
  .services-preview { padding: 80px 24px; }
  .section-header { flex-direction: column; }
  .svc-img { display: none; }
}
 
@media (max-width: 600px) {
  .hero-h1 { font-size: 2.6rem; }
  .mission { padding: 60px 20px; }
  .gateway { padding: 60px 20px; }
}