/* ════════════════════════
   HOME PAGE STYLES
════════════════════════ */

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  background: var(--cream);
  display: flex; align-items: center;
  position: relative; overflow: hidden;
  padding-top: var(--nav-h);
}

.hero-bg-geo {
  position: absolute; right: 0; top: 0; bottom: 0;
  width: 52%; background: var(--section-alt, #F5EFE3);
  pointer-events: none; z-index: 0;
}
.hero-bg-geo::before {
  content: ''; position: absolute; left: -1px; top: 0; bottom: 0;
  width: 80px;
  background: linear-gradient(90deg, var(--cream), transparent);
}

.hero-content {
  position: relative; z-index: 2;
  padding: 60px 6%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
  width: 100%;
}

/* Left side */
.hero-eyebrow {
  font-family: var(--font-ui);
  font-size: 0.58rem; letter-spacing: 4px;
  text-transform: uppercase; color: var(--gold);
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 28px;
  opacity: 0; animation: hFade 0.9s 0.3s cubic-bezier(.16,1,.3,1) forwards;
}
.hero-eyebrow::before { content: ''; width: 30px; height: 1px; background: var(--gold); }

.hero-h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 4.8rem);
  font-weight: 400; line-height: 1.08;
  color: var(--text-dark); margin-bottom: 28px;
  opacity: 0; animation: hFade 0.9s 0.5s cubic-bezier(.16,1,.3,1) forwards;
}
.hero-h1 em { font-style: italic; color: var(--gold); display: block; }

.hero-p {
  font-size: 0.92rem; line-height: 1.95;
  color: var(--text-mid); max-width: 380px;
  font-weight: 300; margin-bottom: 44px;
  opacity: 0; animation: hFade 0.9s 0.7s cubic-bezier(.16,1,.3,1) forwards;
}

.hero-btns {
  display: flex; gap: 16px; flex-wrap: wrap;
  opacity: 0; animation: hFade 0.9s 0.9s cubic-bezier(.16,1,.3,1) forwards;
}

/* Right side — GK card */
.hero-panel {
  opacity: 0; animation: hSlide 0.9s 0.6s cubic-bezier(.16,1,.3,1) forwards;
}

.gk-card {
  background: #fff;
  border: 1px solid var(--border);
  padding: 50px 44px;
  position: relative;
  box-shadow: var(--shadow-lg);
}
.gk-card::before {
  content: ''; position: absolute;
  top: -8px; right: 8px; bottom: 8px; left: -8px;
  border: 1px solid var(--border);
  z-index: -1;
}

.gk-monogram {
  font-family: var(--font-display);
  font-size: 7rem; font-weight: 600;
  line-height: 0.9; letter-spacing: -6px;
  color: var(--text-dark); margin-bottom: 8px;
}
.gk-monogram span { color: var(--gold); }

.gk-sub {
  font-family: var(--font-ui);
  font-size: 0.56rem; letter-spacing: 4px;
  text-transform: uppercase; color: var(--text-light);
  margin-bottom: 36px;
}

.gk-metrics {
  display: grid; grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--border); gap: 0;
}
.gk-m {
  padding: 20px 16px; text-align: center;
}
.gk-m + .gk-m { border-left: 1px solid var(--border); }
.gk-m:nth-child(3), .gk-m:nth-child(4) { border-top: 1px solid var(--border); }
.gk-mnum {
  font-family: var(--font-display);
  font-size: 2rem; font-weight: 600; color: var(--gold); line-height: 1;
}
.gk-mnum sup { font-size: 1rem; }
.gk-mlbl { font-size: 0.6rem; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text-light); margin-top: 4px; }

/* Hero scroll indicator */
.hero-scroll {
  position: absolute; bottom: 40px; left: 6%;
  display: flex; align-items: center; gap: 12px;
  color: var(--text-light); font-family: var(--font-ui);
  font-size: 0.55rem; letter-spacing: 3px; text-transform: uppercase;
  opacity: 0; animation: hFade 0.9s 1.2s forwards;
}
.scroll-track { width: 1px; height: 46px; background: var(--border); position: relative; overflow: hidden; }
.scroll-track::after { content: ''; position: absolute; top: -100%; width: 100%; height: 100%; background: var(--gold); animation: scrollPulse 1.8s 1.5s infinite; }
@keyframes scrollPulse { 0%{top:-100%} 50%{top:100%} 100%{top:100%} }

@keyframes hFade  { from{opacity:0;transform:translateY(28px)} to{opacity:1;transform:none} }
@keyframes hSlide { from{opacity:0;transform:translateX(28px)}  to{opacity:1;transform:none} }

/* ─── SERVICES PREVIEW ─── */
.services-preview {
  background: var(--section-alt, #F5EFE3);
  padding: 100px 6%;
  position: relative;
}
.services-preview::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg,transparent,var(--gold),transparent); }

.sp-header {
  display: flex; align-items: flex-end; justify-content: space-between;
  flex-wrap: wrap; gap: 20px; margin-bottom: 56px;
}

.services-grid {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 1px; background: var(--border);
  border: 1px solid var(--border);
}

.svc-card {
  background: #fff; padding: 36px 28px;
  position: relative; overflow: hidden;
  transition: background 0.3s, transform 0.3s;
}
.svc-card::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 3px; background: var(--gold); transition: width 0.4s; }
.svc-card:hover { background: var(--cream); }
.svc-card:hover::after { width: 100%; }
.svc-card:hover { transform: translateY(-3px); }

.svc-icon {
  width: 56px; height: 56px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; color: var(--gold);
  margin-bottom: 20px;
  transition: all 0.3s;
}
.svc-card:hover .svc-icon { background: var(--gold); color: #fff; border-color: var(--gold); }

.svc-title {
  font-family: var(--font-display);
  font-size: 1.15rem; font-weight: 600;
  color: var(--text-dark); margin-bottom: 10px; line-height: 1.3;
}
.svc-desc { font-size: 0.8rem; line-height: 1.85; color: var(--text-mid); font-weight: 300; }
.svc-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-ui); font-size: 0.58rem;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--gold); margin-top: 22px;
  transition: gap 0.3s;
}
.svc-link:hover { gap: 14px; }

/* ─── STATS ─── (uses .stats-bar from main.css) */

/* ─── ABOUT PREVIEW ─── */
.about-preview {
  background: var(--cream);
  padding: 100px 6%;
}
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 10px; align-items: center;
  margin-top: 0;
}
.about-img-side { position: relative; }
.about-img-wrap {
  position: relative; padding-bottom: 20px; padding-right: 20px;
}
.about-img-wrap img {
  width: 100%; height: 500px; object-fit: cover;
  filter: brightness(0.92);
}
.about-img-wrap::after {
  content: ''; position: absolute;
  bottom: 0; right: 0;
  width: calc(100% - 20px); height: calc(100% - 20px);
  border: 1px solid var(--border);
  z-index: -1;
}
.about-badge {
  position: absolute; bottom: 40px; left: -20px;
  background: var(--gold); color: #fff;
  padding: 20px 24px;
  font-family: var(--font-ui); font-size: 0.58rem;
  letter-spacing: 2px; text-transform: uppercase;
  box-shadow: var(--shadow-md);
}
.about-badge strong { display: block; font-size: 1.8rem; font-family: var(--font-display); line-height: 1; margin-bottom: 4px; font-weight: 600; }

.about-text { padding-left: 10px; }
.why-list { margin-top: 30px; display: grid; gap: 16px; margin-bottom: 35px; }
.why-item {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 18px 20px;
  border: 1px solid var(--border);
  background: var(--warm-white);
  transition: all 0.3s;
}
.why-item:hover { border-color: var(--gold); box-shadow: var(--shadow-sm); }
.why-ic {
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--gold-pale, rgba(184,134,11,0.08));
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem; color: var(--gold); flex-shrink: 0;
}
.why-item:hover .why-ic { background: var(--gold); color: #fff; border-color: var(--gold); }
.why-t { font-family: var(--font-display); font-size: 1.05rem; font-weight: 600; color: var(--text-dark); margin-bottom: 4px; }
.why-d { font-size: 0.8rem; line-height: 1.8; color: var(--text-mid); font-weight: 300; }

/* ─── CTA SECTION ─── */
.cta-section {
  background: var(--dark-bg);
  padding: 110px 6%;
  text-align: center;
  position: relative; overflow: hidden;
}
.cta-ring {
  position: absolute; border-radius: 50%;
  border: 1px solid rgba(184,134,11,0.07);
  top: 50%; left: 50%; transform: translate(-50%,-50%);
  pointer-events: none;
}
.cta-section .s-tag { color: var(--gold); justify-content: center; }
.cta-section .s-title { color: #fff; }
.cta-section .s-body { color: rgba(255,255,255,0.45); max-width: 460px; margin: 0 auto 40px; }

/* ─── RESPONSIVE ─── */
@media (max-width:1024px) {
  .hero-content { grid-template-columns: 1fr; gap: 50px; }
  .hero-bg-geo { display: none; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 50px; }
}
@media (max-width:768px) {
  .services-grid { grid-template-columns: 1fr; }
  .hero-h1 { font-size: 2.8rem; }
  .gk-monogram { font-size: 5rem; }
  .cta-section { padding: 70px 5%; }
}
