@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Open+Sans:wght@300;400;600;700&display=swap');

html { scroll-behavior: smooth; }
body { -webkit-font-smoothing: antialiased; }

/* ── Hero ─────────────────────────────────────── */
.hero-wrapper {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  background: #050d1a;
  overflow: hidden;
}

.hero-photo {
  position: absolute;
  top: 0; left: 0;
  width: 50%;
  height: 100%;
  object-fit: contain;
  object-position: right center;
}

@media (max-width: 768px) {
  .hero-photo { width: 100%; opacity: 0.15; object-position: center center; }
}

/* ── Gold divider ─────────────────────────────── */
.gold-rule {
  display: block;
  width: 60px;
  height: 3px;
  background: #c9a84c;
  margin: 1rem 0;
}

/* ── Section accent border ────────────────────── */
.section-accent {
  border-top: 3px solid #c9a84c;
}

/* ── Card hover ───────────────────────────────── */
.lift {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.lift:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(10,22,40,0.14);
}

/* ── Nav active state ─────────────────────────── */
.nav-active {
  color: #c9a84c !important;
  border-bottom: 2px solid #c9a84c;
  padding-bottom: 2px;
}

/* ── Smooth scrollbar ─────────────────────────── */
::-webkit-scrollbar       { width: 6px; }
::-webkit-scrollbar-track { background: #f5f3f0; }
::-webkit-scrollbar-thumb { background: #c9a84c; border-radius: 3px; }

/* ── Practice area grid icon ──────────────────── */
.practice-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0f1f3d;
  border-radius: 50%;
  color: #c9a84c;
  font-size: 1.2rem;
  flex-shrink: 0;
}

/* ── Sticky header shadow on scroll ──────────── */
.site-header.scrolled {
  box-shadow: 0 2px 20px rgba(10,22,40,0.18);
}

/* ── Mobile menu transition ───────────────────── */
#nav-menu { transition: max-height 0.3s ease; }
