
:root {
  --ink: #07111c;
  --ink-2: #0d1b29;
  --ink-3: #132435;
  --paper: #ffffff;
  --paper-2: #f5f1e9;
  --paper-3: #ebe4d7;
  --text: #111827;
  --muted: #667085;
  --gold: #c9a45c;
  --gold-2: #e2c57d;
  --gold-3: #8d6c31;
  --line: rgba(201, 164, 92, .32);
  --soft-line: rgba(7, 17, 28, .1);
  --shadow: 0 28px 80px rgba(0,0,0,.25);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  background: var(--paper);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.65;
}
a { color: inherit; text-decoration: none; }
.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}
.narrow {
  width: min(900px, calc(100% - 40px));
}
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 999;
  background: rgba(7,17,28,.9);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.nav-shell {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: white;
}
.brand-seal, .footer-seal {
  width: 50px;
  height: 50px;
  border: 1px solid var(--gold);
  color: var(--gold);
  display: grid;
  place-items: center;
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
  letter-spacing: .08em;
  background: rgba(255,255,255,.03);
}
.brand-name {
  display: grid;
  gap: 2px;
}
.brand-name strong {
  font-size: 15px;
  letter-spacing: .03em;
}
.brand-name small {
  color: rgba(255,255,255,.62);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .12em;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
.main-nav a {
  color: rgba(255,255,255,.76);
  font-size: 14px;
  font-weight: 600;
  transition: .2s ease;
}
.main-nav a:hover, .main-nav a.active {
  color: var(--gold-2);
}
.menu-toggle {
  display: none;
  border: 0;
  background: none;
  color: white;
  font-size: 30px;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  color: white;
  padding: 140px 0 80px;
  background:
    linear-gradient(112deg, rgba(7,17,28,.98), rgba(13,27,41,.93) 48%, rgba(7,17,28,.62)),
    radial-gradient(circle at 20% 20%, rgba(201,164,92,.24), transparent 32%),
    url("https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&w=2200&q=85") center/cover no-repeat;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7,17,28,.92), transparent),
    radial-gradient(circle at 80% 15%, rgba(201,164,92,.14), transparent 30%);
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 410px;
  gap: 58px;
  align-items: center;
}
.eyebrow, .section-tag {
  color: var(--gold-2);
  text-transform: uppercase;
  letter-spacing: .19em;
  font-weight: 800;
  font-size: 12px;
}
h1, h2, h3 {
  font-family: "Cormorant Garamond", serif;
  line-height: 1.03;
  margin: 0 0 22px;
  font-weight: 700;
}
h1 {
  font-size: clamp(48px, 6.8vw, 88px);
  letter-spacing: -.035em;
}
h2 {
  font-size: clamp(34px, 4.5vw, 58px);
  letter-spacing: -.025em;
}
h3 {
  font-size: 29px;
}
.lead {
  font-size: 19px;
  color: rgba(255,255,255,.78);
  max-width: 850px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 34px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid transparent;
  font-weight: 800;
  transition: .22s ease;
}
.btn-gold {
  background: var(--gold);
  color: #101010;
}
.btn-gold:hover {
  background: var(--gold-2);
  transform: translateY(-2px);
}
.btn-ghost {
  border-color: rgba(255,255,255,.26);
  color: white;
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold-2);
}
.executive-card {
  padding: 36px;
  border: 1px solid rgba(201,164,92,.38);
  background: rgba(255,255,255,.07);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}
.executive-card h2 {
  font-size: 36px;
}
.executive-card ul {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
}
.executive-card li {
  padding: 13px 0;
  border-top: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.78);
}
.section {
  padding: 96px 0;
}
.split {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 76px;
  align-items: start;
}
.rich-text p {
  color: var(--muted);
  font-size: 17px;
  margin: 0 0 18px;
}
.rich-text strong {
  color: var(--text);
}
.rich-text.light p, .rich-text.light strong {
  color: rgba(255,255,255,.82);
}
.intro {
  background: var(--paper);
}
.practice-section {
  background: var(--paper-2);
}
.practice-section.soft {
  background: var(--paper);
}
.section-heading {
  max-width: 900px;
  margin-bottom: 42px;
}
.practice-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.practice-grid.large {
  grid-template-columns: repeat(3, 1fr);
}
.practice-tile {
  display: block;
  min-height: 310px;
  background: white;
  border: 1px solid var(--soft-line);
  padding: 32px;
  transition: .22s ease;
}
.practice-tile:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 60px rgba(7,17,28,.16);
  border-color: rgba(201,164,92,.55);
}
.practice-tile.static:hover {
  transform: none;
}
.practice-tile span {
  display: inline-block;
  color: var(--gold-3);
  font-weight: 900;
  margin-bottom: 22px;
}
.practice-tile h3 {
  color: var(--ink);
}
.practice-tile p {
  color: var(--muted);
  font-size: 15px;
}
.dark-panel-section {
  background: var(--ink);
  color: white;
}
.dark-panel {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 70px;
  border: 1px solid var(--line);
  padding: 58px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.045), rgba(255,255,255,.015)),
    radial-gradient(circle at top left, rgba(201,164,92,.16), transparent 38%);
}
.process {
  background: var(--paper);
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.process-card {
  border-top: 2px solid var(--gold);
  padding: 28px 22px;
  background: #fff;
  box-shadow: 0 12px 36px rgba(7,17,28,.08);
}
.process-card strong {
  color: var(--gold-3);
}
.process-card p {
  color: var(--muted);
  font-size: 15px;
}
.credibility {
  background: var(--paper-2);
}
.text-link {
  display: inline-block;
  color: var(--gold-3);
  font-weight: 800;
  margin-top: 12px;
}

.subhero {
  color: white;
  padding: 170px 0 96px;
  background:
    linear-gradient(112deg, rgba(7,17,28,.96), rgba(13,27,41,.88)),
    radial-gradient(circle at 70% 20%, rgba(201,164,92,.18), transparent 38%),
    url("https://images.unsplash.com/photo-1450101499163-c8848c66ca85?auto=format&fit=crop&w=2200&q=85") center/cover no-repeat;
}
.subhero.international {
  background:
    linear-gradient(112deg, rgba(7,17,28,.96), rgba(13,27,41,.86)),
    url("https://images.unsplash.com/photo-1494526585095-c41746248156?auto=format&fit=crop&w=2200&q=85") center/cover no-repeat;
}
.subhero.offshore {
  background:
    linear-gradient(112deg, rgba(7,17,28,.97), rgba(13,27,41,.88)),
    url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=2200&q=85") center/cover no-repeat;
}
.subhero.banking {
  background:
    linear-gradient(112deg, rgba(7,17,28,.97), rgba(13,27,41,.88)),
    url("https://images.unsplash.com/photo-1520607162513-77705c0f0d4a?auto=format&fit=crop&w=2200&q=85") center/cover no-repeat;
}
.subhero.contact-hero {
  background:
    linear-gradient(112deg, rgba(7,17,28,.97), rgba(13,27,41,.88)),
    url("https://images.unsplash.com/photo-1521791136064-7986c2920216?auto=format&fit=crop&w=2200&q=85") center/cover no-repeat;
}
.subhero h1 {
  max-width: 1000px;
}
.warning-section {
  background: var(--paper-2);
}
.warning-box, .cta-box {
  background: var(--ink);
  color: white;
  padding: 58px;
  border: 1px solid var(--line);
}
.warning-box p, .cta-box p {
  color: rgba(255,255,255,.76);
  font-size: 17px;
}
.cta-section {
  background: var(--paper);
}
.cta-box {
  text-align: center;
}
.contact-page {
  background: var(--paper-2);
}
.contact-layout {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 60px;
}
.contact-info p {
  color: var(--muted);
}
.contact-methods {
  margin-top: 34px;
  display: grid;
  gap: 16px;
}
.contact-methods div {
  background: white;
  padding: 22px;
  border: 1px solid var(--soft-line);
}
.contact-methods strong {
  display: block;
  color: var(--ink);
}
.contact-methods a {
  color: var(--gold-3);
  font-weight: 700;
}
.contact-form {
  background: white;
  padding: 34px;
  border: 1px solid var(--soft-line);
  box-shadow: 0 18px 60px rgba(7,17,28,.1);
}
.contact-form label {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
  font-weight: 800;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(7,17,28,.18);
  padding: 14px;
  font: inherit;
  outline: none;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--gold);
}
.form-note {
  color: var(--muted);
  font-size: 13px;
}
.site-footer {
  background: #050b12;
  color: rgba(255,255,255,.72);
  padding: 54px 0 28px;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 44px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-top h2 {
  color: white;
  font-size: 38px;
  margin-top: 18px;
}
.footer-contact {
  text-align: right;
}
.footer-contact a {
  color: var(--gold-2);
}
.footer-bottom {
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  gap: 30px;
  font-size: 13px;
}
.ethics {
  max-width: 620px;
  text-align: right;
}

@media (max-width: 1000px) {
  .menu-toggle { display: block; }
  .main-nav {
    position: fixed;
    top: 82px;
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    background: var(--ink);
    padding: 24px;
    border: 1px solid rgba(255,255,255,.1);
  }
  .main-nav.open { display: flex; }
  .hero-grid, .split, .dark-panel, .contact-layout {
    grid-template-columns: 1fr;
  }
  .practice-grid, .practice-grid.large {
    grid-template-columns: repeat(2, 1fr);
  }
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-top, .footer-bottom {
    flex-direction: column;
  }
  .footer-contact, .ethics {
    text-align: left;
  }
}

@media (max-width: 640px) {
  .container, .narrow {
    width: min(100% - 28px, 1180px);
  }
  .brand-name { display: none; }
  h1 { font-size: 44px; }
  h2 { font-size: 34px; }
  .hero, .subhero {
    padding-top: 130px;
  }
  .hero-actions {
    flex-direction: column;
  }
  .btn { width: 100%; }
  .practice-grid, .practice-grid.large, .process-grid {
    grid-template-columns: 1fr;
  }
  .executive-card, .dark-panel, .warning-box, .cta-box, .contact-form {
    padding: 28px;
  }
  .section { padding: 72px 0; }
}
