:root {
  --bg-deep: #0D1B2A;
  --bg-dark: #0A1622;
  --bg-section: #11233A;
  --gold: #C9A961;
  --gold-soft: rgba(201, 169, 97, 0.55);
  --text-light: #E8DFC7;
  --text-body: #C9CDD3;
  --text-muted: #8A8E96;
  --border-subtle: rgba(232, 223, 199, 0.12);
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg-deep);
  color: var(--text-body);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  color: var(--text-light);
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1.2;
}
p { color: var(--text-body); }
a { color: var(--gold); text-decoration: none; transition: opacity 0.2s ease; }
a:hover { opacity: 0.75; }
.eyebrow, .section-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 24px;
}
.section-title { font-size: clamp(28px, 4vw, 48px); margin-bottom: 24px; max-width: 800px; }
.section-lede { font-size: 17px; max-width: 720px; margin-bottom: 56px; line-height: 1.7; }
.muted { color: var(--text-muted); font-size: 0.9em; }
.container { max-width: 1240px; margin: 0 auto; padding: 0 32px; }
.section { padding: 120px 0; border-top: 1px solid var(--border-subtle); }
.section-dark { background: var(--bg-dark); }

.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(13, 27, 42, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-subtle);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 0; gap: 32px;
}
.logo-link { display: flex; align-items: center; gap: 14px; }
.logo-img { width: 40px; height: 40px; border-radius: 4px; }
.logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px; letter-spacing: 0.35em; color: var(--gold); font-weight: 500;
}
.site-nav { display: flex; gap: 36px; flex: 1; justify-content: center; }
.site-nav a { font-size: 14px; color: var(--text-body); letter-spacing: 0.04em; }
.site-nav a:hover { color: var(--gold); opacity: 1; }
.header-cta {
  font-size: 14px; color: var(--text-light);
  border: 1px solid var(--gold-soft); padding: 10px 18px; border-radius: 2px;
  letter-spacing: 0.03em; white-space: nowrap; transition: all 0.2s ease;
}
.header-cta:hover { background: var(--gold); color: var(--bg-deep); opacity: 1; }
.nav-toggle {
  display: none; background: none; border: none; cursor: pointer;
  padding: 8px; flex-direction: column; gap: 5px;
}
.nav-toggle span { display: block; width: 24px; height: 1.5px; background: var(--gold); }

.hero { padding: 140px 0 100px; position: relative; overflow: hidden; }
.hero::before {
  content: ''; position: absolute; top: -150px; right: -150px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(201, 169, 97, 0.06) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner { position: relative; }
.hero-title {
  font-size: clamp(36px, 5.5vw, 68px); font-weight: 300;
  margin-bottom: 32px; line-height: 1.15;
}
.hero-lede {
  font-size: 19px; line-height: 1.7; max-width: 740px;
  margin-bottom: 48px; font-weight: 300;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-divider {
  position: absolute; bottom: 0; left: 50%;
  transform: translateX(-50%); width: 80px; height: 1px;
  background: var(--gold-soft);
}

.btn {
  display: inline-block; padding: 14px 32px;
  font-size: 14px; font-weight: 500; letter-spacing: 0.05em;
  border-radius: 2px; cursor: pointer;
  transition: all 0.25s ease; border: 1px solid transparent;
}
.btn-primary { background: var(--gold); color: var(--bg-deep); border-color: var(--gold); }
.btn-primary:hover { background: transparent; color: var(--gold); opacity: 1; }
.btn-ghost { background: transparent; color: var(--text-light); border-color: var(--gold-soft); }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); opacity: 1; }

.cases { display: grid; gap: 4px; }
.case { padding: 48px 0; border-top: 1px solid var(--border-subtle); }
.case:last-child { border-bottom: 1px solid var(--border-subtle); }
.case-tag {
  font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 16px; font-weight: 500;
}
.case-title { font-size: clamp(22px, 2.6vw, 30px); margin-bottom: 20px; max-width: 800px; }
.case-body { font-size: 16px; max-width: 820px; line-height: 1.75; }

.geo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1px; background: var(--border-subtle);
  border: 1px solid var(--border-subtle);
}
.geo-card { background: var(--bg-deep); padding: 40px 32px; transition: background 0.2s ease; }
.geo-card:hover { background: var(--bg-section); }
.geo-title { font-size: 26px; margin-bottom: 8px; }
.geo-tag {
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 20px; font-weight: 500;
}
.geo-card p:last-child { font-size: 15px; line-height: 1.7; }

.practice-list { display: grid; }
.practice-item {
  padding: 40px 0; border-top: 1px solid var(--border-subtle);
  display: grid; grid-template-columns: 1fr 2fr; gap: 48px; align-items: start;
}
.practice-item:last-child { border-bottom: 1px solid var(--border-subtle); }
.practice-item h3 { font-size: 24px; }
.practice-item p { font-size: 16px; line-height: 1.75; max-width: 720px; }

.insights-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px; margin-bottom: 48px;
}
.insight-card {
  display: block; padding: 32px;
  background: var(--bg-section);
  border: 1px solid var(--border-subtle);
  border-radius: 2px; transition: all 0.25s ease;
}
.insight-card:hover {
  background: var(--bg-dark); border-color: var(--gold-soft);
  opacity: 1; transform: translateY(-2px);
}
.insight-date {
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 16px; font-weight: 500;
}
.insight-title { font-size: 22px; margin-bottom: 14px; line-height: 1.3; }
.insight-excerpt { font-size: 15px; line-height: 1.65; }
.insights-cta { text-align: center; }

.section-contact { background: var(--bg-dark); padding: 140px 0; }
.contact-inner { max-width: 880px; }
.contact-details {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px;
  margin: 56px 0 48px; padding: 40px 0;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}
.contact-block p:not(.contact-label) { color: var(--text-light); font-size: 16px; line-height: 1.8; }
.contact-label {
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 12px; font-weight: 500;
}
.contact-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.site-footer { padding: 40px 0; border-top: 1px solid var(--border-subtle); background: var(--bg-dark); }
.footer-inner {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 24px;
}
.footer-brand {
  display: flex; align-items: center; gap: 14px;
  color: var(--text-muted); font-size: 13px; letter-spacing: 0.05em;
}
.footer-logo { width: 28px; height: 28px; border-radius: 3px; opacity: 0.8; }
.footer-meta { font-size: 12px; color: var(--text-muted); }

.article { max-width: 760px; margin: 0 auto; }
.article h1 { font-size: clamp(32px, 4.5vw, 48px); margin: 16px 0 24px; line-height: 1.2; }
.article-meta {
  font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold);
}
.article p { font-size: 17px; line-height: 1.8; margin-bottom: 24px; }
.article h2 { font-size: 28px; margin: 56px 0 20px; }
.article hr { border: none; border-top: 1px solid var(--border-subtle); margin: 56px 0; }
.article-back { display: inline-block; margin-bottom: 32px; font-size: 14px; }

@media (max-width: 960px) {
  .practice-item { grid-template-columns: 1fr; gap: 16px; }
}
@media (max-width: 768px) {
  .container { padding: 0 24px; }
  .section { padding: 80px 0; }
  .hero { padding: 80px 0 60px; }
  .site-nav, .header-cta { display: none; }
  .nav-toggle { display: flex; }
  .site-nav.is-open {
    display: flex; position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; background: var(--bg-dark);
    padding: 24px; gap: 20px; border-bottom: 1px solid var(--border-subtle);
  }
  .hero-title { font-size: 36px; }
  .hero-lede { font-size: 17px; }
  .section-title { font-size: 28px; }
  .contact-details { grid-template-columns: 1fr; gap: 32px; }
  .footer-inner { flex-direction: column; text-align: center; }
}
@media (max-width: 480px) {
  .container { padding: 0 20px; }
  .hero-actions, .contact-actions { flex-direction: column; }
  .hero-actions .btn, .contact-actions .btn { width: 100%; text-align: center; }
}
