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

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:   #0c1a2e;
  --navy2:  #112240;
  --gold:   #c9a84c;
  --gold2:  #a07830;
  --white:  #f8f5f0;
  --ash:    #e8e2d9;
  --text:   #1c2b3a;
  --muted:  #6b7a8d;
  --border: rgba(201,168,76,0.25);
}

html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'Jost', sans-serif; background: var(--white); color: var(--text); line-height: 1.7; }

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--navy); }
::-webkit-scrollbar-thumb { background: var(--gold); }

/* ── NAV ── */
#nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5%; height: 96px;
  background: rgba(12,26,46,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: height .3s;
}
.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600; font-size: 1.2rem;
  color: var(--white); letter-spacing: .04em;
  text-decoration: none;
}
.nav-logo span { color: var(--gold); }
.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a {
  font-size: .72rem; font-weight: 500; letter-spacing: .12em;
  text-transform: uppercase; color: var(--ash);
  text-decoration: none; transition: color .2s;
  position: relative; padding-bottom: 4px;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 1px; background: var(--gold);
  transform: scaleX(0); transition: transform .25s;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-cta {
  font-size: .72rem; font-weight: 600; letter-spacing: .1em;
  text-transform: uppercase; padding: .55rem 1.5rem;
  border: 1px solid var(--gold); color: var(--gold);
  background: transparent; cursor: pointer; transition: all .25s;
  text-decoration: none;
}
.nav-cta:hover { background: var(--gold); color: var(--navy); }
.nav-burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.nav-burger span { display: block; width: 24px; height: 2px; background: var(--white); }
.nav-mobile {
  display: none; position: fixed; top: 72px; left: 0; right: 0; z-index: 800;
  background: var(--navy); padding: 2rem 5%;
  flex-direction: column; gap: 1.4rem;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-size: .8rem; font-weight: 500; letter-spacing: .1em;
  text-transform: uppercase; color: var(--ash); text-decoration: none;
}
.nav-mobile a:hover { color: var(--gold); }

@media(max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .nav-burger { display: flex; }
}

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: var(--navy);
  padding: 180px 5% 80px;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(201,168,76,.07) 0%, transparent 70%);
}
.page-hero-inner { position: relative; max-width: 700px; }
.page-hero-eyebrow {
  display: inline-flex; align-items: center; gap: .75rem;
  font-size: .68rem; font-weight: 600; letter-spacing: .2em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 1.5rem;
}
.page-hero-eyebrow::before { content: ''; width: 28px; height: 1px; background: var(--gold); display: block; }
.page-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 400; line-height: 1.15; color: var(--white); margin-bottom: 1.25rem;
}
.page-hero h1 em { font-style: italic; color: var(--gold); }
.page-hero-sub {
  font-size: .95rem; font-weight: 300;
  color: rgba(232,225,215,.65); max-width: 560px; line-height: 1.85;
}
.page-hero-rule {
  width: 60px; height: 2px; background: var(--gold); margin: 1.5rem 0;
}

/* ── BREADCRUMB ── */
.breadcrumb {
  display: flex; align-items: center; gap: .6rem;
  font-size: .68rem; font-weight: 500; letter-spacing: .08em;
  text-transform: uppercase; color: rgba(232,225,215,.35);
  margin-bottom: 2rem;
}
.breadcrumb a { color: rgba(232,225,215,.35); text-decoration: none; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: var(--gold); }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-block;
  padding: .85rem 2.5rem; background: var(--gold);
  color: var(--navy); font-size: .75rem; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase; text-decoration: none;
  transition: all .25s; border: none; cursor: pointer; font-family: 'Jost', sans-serif;
}
.btn-primary:hover { background: var(--gold2); transform: translateY(-2px); }
.btn-outline {
  display: inline-block;
  padding: .85rem 2.5rem; background: transparent;
  border: 1px solid rgba(232,225,215,.4);
  color: var(--ash); font-size: .75rem; font-weight: 500;
  letter-spacing: .1em; text-transform: uppercase; text-decoration: none;
  transition: all .25s; cursor: pointer;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.btn-outline-dark {
  display: inline-block;
  padding: .85rem 2.5rem; background: transparent;
  border: 1px solid rgba(12,26,46,.25);
  color: var(--text); font-size: .75rem; font-weight: 500;
  letter-spacing: .1em; text-transform: uppercase; text-decoration: none;
  transition: all .25s; cursor: pointer;
}
.btn-outline-dark:hover { border-color: var(--gold2); color: var(--gold2); }

/* ── TYPOGRAPHY ── */
h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.9rem, 3.5vw, 2.9rem);
  font-weight: 400; line-height: 1.2; color: var(--navy);
}
h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.45rem; font-weight: 500; }
h4 { font-family: 'Cormorant Garamond', serif; font-size: 1.15rem; font-weight: 500; }

.section-tag {
  font-size: .68rem; font-weight: 600; letter-spacing: .2em;
  text-transform: uppercase; color: var(--gold);
  display: inline-flex; align-items: center; gap: .6rem; margin-bottom: 1rem;
}
.section-tag::before { content: ''; width: 24px; height: 1px; background: var(--gold); display: block; }
.divider { width: 48px; height: 2px; background: var(--gold); margin: 1.25rem 0 2rem; }
.text-muted { color: var(--muted); }
.text-gold { color: var(--gold); }

/* ── LAYOUT ── */
section { padding: 96px 5%; }
.container { max-width: 1280px; margin: 0 auto; }
.max-620 { max-width: 620px; }
.max-760 { max-width: 760px; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
@media(max-width:900px){ .grid-2{ grid-template-columns:1fr; gap:3rem; } }
@media(max-width:768px){ .grid-3{ grid-template-columns:1fr; } }

/* ── REVEAL ── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: none; }
.delay-1 { transition-delay: .1s; }
.delay-2 { transition-delay: .2s; }
.delay-3 { transition-delay: .3s; }
.delay-4 { transition-delay: .4s; }
@media(prefers-reduced-motion:reduce){ .reveal{ opacity:1; transform:none; transition:none; } }

/* ── FOOTER ── */
footer {
  background: #060f1c;
  padding: 4rem 5% 2rem;
  color: rgba(232,225,215,.4);
}
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem; padding-bottom: 3rem;
  border-bottom: 1px solid rgba(201,168,76,.1);
}
.footer-brand p {
  font-size: .82rem; line-height: 1.8;
  color: rgba(232,225,215,.35); margin-top: 1rem; max-width: 260px;
}
.footer-col h4 {
  font-family: 'Jost', sans-serif;
  font-size: .68rem; font-weight: 600; letter-spacing: .15em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 1.2rem;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: .6rem; }
.footer-col ul li a {
  font-size: .82rem; color: rgba(232,225,215,.4);
  text-decoration: none; transition: color .2s;
}
.footer-col ul li a:hover { color: var(--gold); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 2rem; font-size: .75rem; flex-wrap: wrap; gap: 1rem;
}
.footer-bottom a { color: var(--gold); text-decoration: none; }
@media(max-width:900px){ .footer-top{ grid-template-columns:1fr 1fr; } }
@media(max-width:500px){ .footer-top{ grid-template-columns:1fr; } }

/* ── COMMON CARDS ── */
.card-line {
  border: 1px solid var(--ash); padding: 2rem 1.75rem;
  position: relative; overflow: hidden;
  transition: border-color .25s, box-shadow .25s;
}
.card-line::after {
  content: ''; position: absolute; top: 0; left: 0;
  width: 3px; height: 0; background: var(--gold);
  transition: height .35s ease;
}
.card-line:hover { border-color: rgba(201,168,76,.5); box-shadow: 0 8px 32px rgba(201,168,76,.08); }
.card-line:hover::after { height: 100%; }

/* ── PHOTO CARDS ── */
.photo-card {
  position: relative; overflow: hidden;
  background: var(--navy);
}
.photo-card img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: top center;
  display: block;
  transition: transform .5s ease, filter .4s ease;
  filter: grayscale(15%);
}
.photo-card:hover img { transform: scale(1.04); filter: grayscale(0%); }
.photo-card-overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(12,26,46,.95) 0%, rgba(12,26,46,.5) 60%, transparent 100%);
  padding: 2rem 1.5rem 1.5rem;
  transform: translateY(0);
  transition: padding .3s;
}
.photo-card:hover .photo-card-overlay { padding-bottom: 2rem; }
.photo-card-name { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; font-weight: 500; color: var(--white); margin-bottom: .2rem; }
.photo-card-role { font-size: .63rem; font-weight: 600; letter-spacing: .13em; text-transform: uppercase; color: var(--gold); }
.photo-card-tags { display: flex; gap: .4rem; flex-wrap: wrap; margin-top: .65rem; opacity: 0; transform: translateY(6px); transition: all .3s .05s; }
.photo-card:hover .photo-card-tags { opacity: 1; transform: none; }
.photo-card-tag { font-size: .58rem; padding: .18rem .55rem; border: 1px solid rgba(201,168,76,.4); color: rgba(201,168,76,.8); }

/* ── LADY JUSTICE SVG ── */
.lady-justice-wrap {
  position: absolute; right: 5%; top: 50%; transform: translateY(-50%);
  width: min(380px, 38vw); opacity: .13;
  pointer-events: none; user-select: none;
}
@media(max-width:900px){ .lady-justice-wrap{ display:none; } }
